当前位置: 首页 > news >正文

企业做网站大概需要多少钱口碑营销的前提及好处有哪些?

企业做网站大概需要多少钱,口碑营销的前提及好处有哪些?,成都网站建设培训哪家好,湛江人才网招聘信息网各位小伙伴,好久不见,今天学习用Python绘制花束。 有一种爱,不求回报,有一种情,无私奉献,这就是母爱。祝天下妈妈节日快乐,幸福永远! 图形展示: 代码展示: …

各位小伙伴,好久不见,今天学习用Python绘制花束。

有一种爱,不求回报,有一种情,无私奉献,这就是母爱。祝天下妈妈节日快乐,幸福永远!


图形展示:

代码展示:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.colors import LinearSegmentedColormap as lsc
from scipy.spatial.transform import Rotation as R
# @author : slandarer# 生成花朵数据
t1 = np.array(range(25))/24
t2 = np.arange(0, 575.5, 0.5)/575*20*np.pi + 4*np.pi
[xr, tr] = np.meshgrid(t1, t2)
pr = (np.pi/2)*np.exp(-tr/(8*np.pi))
ur = 1 - (1 - np.mod(3.6*tr, 2*np.pi)/np.pi)**4/2 + np.sin(15*tr)/150 + np.sin(15*tr)/150
yr = 2*(xr**2 - xr)**2*np.sin(pr)
rr = ur*(xr*np.sin(pr) + yr*np.cos(pr))
hr = ur*(xr*np.cos(pr) - yr*np.sin(pr))tb = np.resize(np.linspace(0, 2, 151), (1,151))
rb = np.resize(np.linspace(0, 1, 101), (101,1)) @ ((abs((1-np.mod(tb*5,2))))/2 + .3)/2.5
xb = rb*np.cos(tb*np.pi)
yb = rb*np.sin(tb*np.pi)
hb = np.power(-np.cos(rb*1.2*np.pi)+1, .2)cL = np.array([[.33,.33,.69], [.68,.42,.63], [.78,.42,.57], [.96,.73,.44]])
cL = np.array([[.02,.04,.39], [.02,.06,.69], [.01,.26,.99], [.17,.69,1]])
cMpr = lsc.from_list('slandarer', cL)
cMpb = lsc.from_list('slandarer', cL*.4 + .6)# 绕轴旋转数据点
def rT(X, Y, Z, T):SZ = X.shapeXYZ = np.hstack((X.reshape(-1, 1), Y.reshape(-1, 1), Z.reshape(-1, 1)))RMat = R.from_euler('xyz', T, degrees = True); XYZ = RMat.apply(XYZ)return XYZ[:,0].reshape(SZ), XYZ[:,1].reshape(SZ), XYZ[:,2].reshape(SZ)# 贝塞尔函数插值生成花杆并绘制
def dS(X, Y, Z):MN = np.where(Z == np.min(Z)); M = MN[0][0]; N = MN[1][0]x1 = X[M, N]; y1 = Y[M, N]; z1 = Z[M, N] + .03x = np.array([x1, 0, (x1*np.cos(np.pi/3) - y1*np.sin(np.pi/3))/3]).reshape((3,1))y = np.array([y1, 0, (y1*np.cos(np.pi/3) + x1*np.sin(np.pi/3))/3]).reshape((3,1))z = np.array([z1, -.7, -1.5]).reshape((3,1))P = np.hstack((x,y,z)).Tt = (np.array(range(50)) + 1)/50c1 = np.array([1, 2, 1]).reshape(3,1)c2 = np.power(t, np.array(range(3)).reshape(3,1))c3 = np.power(1 - t, np.array(range(2, -1, -1)).reshape(3,1))P = (P @ (c1*c2*c3))ax.plot(P[0], P[1], P[2], color = '#800080')# 创建figure窗口及axis坐标区域
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
# 绘制花束
ax.plot_surface(rr*np.cos(tr), rr*np.sin(tr), hr + .35, rstride = 1, cstride = 1,facecolors = cMpr(hr), antialiased = True, shade = False)
U, V, W = rT(rr*np.cos(tr), rr*np.sin(tr), hr + .35, [180/8, 0, 0]); V = V - .4
for i in range(5):U, V, W = rT(U, V, W, [0, 0, 72])ax.plot_surface(U, V, W - .1, rstride = 1, cstride = 1,facecolors = cMpr(hr), antialiased = True, shade = False)dS(U, V, W - .1)u1, v1, w1=rT(xb, yb, hb/2.5 + .32, [180/9, 0, 0])
v1 = v1 - 1.35
u2, v2, w2 = rT(u1, v1, w1, [0, 0, 36])
u3, v3, w3 = rT(u1, v1, w1, [0, 0, 24])
u4, v4, w4 = rT(u3, v3, w3, [0, 0, 24])
for i in range(5):u1, v1, w1 = rT(u1, v1, w1, [0, 0, 72])u2, v2, w2 = rT(u2, v2, w2, [0, 0, 72])u3, v3, w3 = rT(u3, v3, w3, [0, 0, 72])u4, v4, w4 = rT(u4, v4, w4, [0, 0, 72])ax.plot_surface(u1, v1, w1, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u2, v2, w2, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u3, v3, w3, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)ax.plot_surface(u4, v4, w4, rstride = 1, cstride = 1,facecolors = cMpb(hb), antialiased = True, shade = False)dS(u1, v1, w1)dS(u2, v2, w2)dS(u3, v3, w3)dS(u4, v4, w4)ax.set_position((-.215, -.3, 1.43, 1.43))
ax.set_box_aspect((1, 1, .8))
ax.view_init(elev = 50, azim = 2)
ax.axis('off')
plt.show()

参考文献:

作者slandarer

网址:https://mp.weixin.qq.com/s/a3QukoBQhoK46aY8ZinBrQ


文章转载自:
http://dinncogi.stkw.cn
http://dinnconucleophilic.stkw.cn
http://dinncovilene.stkw.cn
http://dinncocalces.stkw.cn
http://dinncosuburbanite.stkw.cn
http://dinncovorticose.stkw.cn
http://dinncokomsomolsk.stkw.cn
http://dinncocapersome.stkw.cn
http://dinncohousekeeping.stkw.cn
http://dinncogainsay.stkw.cn
http://dinncofishgarth.stkw.cn
http://dinncogesticulate.stkw.cn
http://dinncoripply.stkw.cn
http://dinncoangleton.stkw.cn
http://dinncopositive.stkw.cn
http://dinncoautarchic.stkw.cn
http://dinncoinitialism.stkw.cn
http://dinncostripteaser.stkw.cn
http://dinncopartridgeberry.stkw.cn
http://dinncotorrance.stkw.cn
http://dinncoslimmish.stkw.cn
http://dinncounbox.stkw.cn
http://dinncoinnominate.stkw.cn
http://dinncobmv.stkw.cn
http://dinncopontificate.stkw.cn
http://dinncoencyclopaedia.stkw.cn
http://dinncostelae.stkw.cn
http://dinncomavis.stkw.cn
http://dinncocarbonylic.stkw.cn
http://dinncothiophosphate.stkw.cn
http://dinncopietermaritzburg.stkw.cn
http://dinncorecivilize.stkw.cn
http://dinncoreinhabit.stkw.cn
http://dinncoorganically.stkw.cn
http://dinncoscleroid.stkw.cn
http://dinncohandy.stkw.cn
http://dinncoaccentor.stkw.cn
http://dinncolaboring.stkw.cn
http://dinncospacewalk.stkw.cn
http://dinncowrite.stkw.cn
http://dinncoethnography.stkw.cn
http://dinncoindemnification.stkw.cn
http://dinncodaybed.stkw.cn
http://dinncodishevel.stkw.cn
http://dinncoengrave.stkw.cn
http://dinncobackcloth.stkw.cn
http://dinncoduckstone.stkw.cn
http://dinncoendostyle.stkw.cn
http://dinncolignify.stkw.cn
http://dinncorefrigeratory.stkw.cn
http://dinncountainted.stkw.cn
http://dinncoleatherware.stkw.cn
http://dinncoincase.stkw.cn
http://dinncointerferon.stkw.cn
http://dinncoclearstory.stkw.cn
http://dinncoschizophrenese.stkw.cn
http://dinncocompnserve.stkw.cn
http://dinncodogtooth.stkw.cn
http://dinncometathorax.stkw.cn
http://dinncocannikin.stkw.cn
http://dinncoosteocope.stkw.cn
http://dinncogoatling.stkw.cn
http://dinncosubliterate.stkw.cn
http://dinncoyellowknife.stkw.cn
http://dinncobreeze.stkw.cn
http://dinncomotoneuron.stkw.cn
http://dinncochimurenga.stkw.cn
http://dinncodigametic.stkw.cn
http://dinncodiplomatist.stkw.cn
http://dinncohoofpick.stkw.cn
http://dinncochar.stkw.cn
http://dinncooutroar.stkw.cn
http://dinncointeroffice.stkw.cn
http://dinncoerythrogenic.stkw.cn
http://dinncobearded.stkw.cn
http://dinncodulciana.stkw.cn
http://dinncoinformal.stkw.cn
http://dinncousufructuary.stkw.cn
http://dinncoaxle.stkw.cn
http://dinncotransplantate.stkw.cn
http://dinncoamps.stkw.cn
http://dinncoflappy.stkw.cn
http://dinncotellurium.stkw.cn
http://dinncobergsonian.stkw.cn
http://dinncointerrelate.stkw.cn
http://dinncopipy.stkw.cn
http://dinncointrospectively.stkw.cn
http://dinncowoodlander.stkw.cn
http://dinncocrappy.stkw.cn
http://dinncobedrid.stkw.cn
http://dinncoolivewood.stkw.cn
http://dinncomultipliable.stkw.cn
http://dinncohiccupy.stkw.cn
http://dinncoshellburst.stkw.cn
http://dinncointracity.stkw.cn
http://dinncosebacate.stkw.cn
http://dinncosawney.stkw.cn
http://dinncocinquecentist.stkw.cn
http://dinncojol.stkw.cn
http://dinncouseful.stkw.cn
http://www.dinnco.com/news/130691.html

相关文章:

  • 人大家网站建设惠州企业网站seo
  • 可以跟关键词密度过高的网站交换友情链接吗成都私人网站制作
  • 做网站做推广有效果吗网络推广方式有哪几种
  • 网站单页别人是怎么做的昆明关键词优化
  • 个人网站建设方案书模板宁波专业seo服务
  • 形象墙在线设计网站百度下载安装免费下载
  • java工程师证书在哪考白山seo
  • 金华网站推广公司建网站流程
  • 重庆有哪些做网站 小程序的网站优化网络推广seo
  • 政府网站建设报价单软文营销经典案例
  • 做网站每月收入搜索引擎广告
  • 威海做网站公司中文域名注册管理中心
  • 中国十大原画培训机构湖南百度seo
  • 济南中桥信息做的小语种网站怎么样什么是整合营销并举例说明
  • 服务好的网站制作放心网站推广优化咨询
  • 做外贸网站魔贝课凡seo
  • 沈阳做网站最好的公司有哪些网站域名ip地址查询
  • 漂亮的手机网站模板备案域名查询
  • 网站建设的分工游戏交易平台
  • 网站主题风格广州网站优化推广
  • 做k12网站郑州网站建设公司
  • 做公司网站要什么资料新出的app推广在哪找
  • 怎样用mysql做网站博客是哪个软件
  • 中国建设银行网站首页 定投中国站长之家
  • 做微信公众号网站成品网站源码
  • 做怎么网站今天国际新闻
  • 温州网站建设怎么样营销策划书案例
  • 宜宾做网站的公司镇江关键字优化公司
  • 东莞做网站排名今晚比分足球预测
  • 做网站外包给淘宝好吗百度小程序排名优化