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

css不规则网站导航怎么做产品推广方案范文

css不规则网站导航怎么做,产品推广方案范文,做网站第三方,wordpress单页网站在本页跳转🎯要点 计算单变量或多变量时序距离,使用欧几里得、曼哈顿等函数量化不同时序差异。量化生成时序之间接近度相似性矩阵。使用高尔距离和堪培拉距离等相似度测量。实现最小方差匹配算法,绘制步进模式的图形表示。其他语言包算法实现。 &…

🎯要点

  1. 计算单变量或多变量时序距离,使用欧几里得、曼哈顿等函数量化不同时序差异。
  2. 量化生成时序之间接近度相似性矩阵。
  3. 使用高尔距离和堪培拉距离等相似度测量。
  4. 实现最小方差匹配算法,绘制步进模式的图形表示。
  5. 其他语言包算法实现。

🍪语言内容分比

在这里插入图片描述
在这里插入图片描述

🍇Python距离矩阵

在数学、计算机科学,尤其是图论中,距离矩阵是一个方阵(二维数组),其中包含一组元素之间成对的距离。根据所涉及的应用,用于定义此矩阵的距离可能是也可能不是度量。如果有 N N N 个元素,则此矩阵的大小将为 N × N N \times N N×N。在图论应用中,元素通常被称为点、节点或顶点。

我们计算两个矩阵 x 和 y 的距离矩阵。两个矩阵的维度相同 (3, 2)。因此距离矩阵的维度为 (3,3)。使用 p=2,距离计算为闵可夫斯基 2 范数(或欧几里得距离)。

import numpy as np
from scipy.spatial import distance_matrix x = np.array([[1,2],[2,1],[2,2]])
y = np.array([[5,0],[1,2],[2,0]])print("matrix x:\n", x)
print("matrix y:\n", y)dist_mat = distance_matrix(x, y, p=2)
print("Distance Matrix:\n", dist_mat)
matrix x:
[[1 2][2 1][2 2]]
matrix y:
[[5 0][1 2][2 0]]
Distance Matrix:
[[4.47213595    2.23606798][3.16227766 1.41421356 1.][3.60555128 1.   2.    ]]

我们计算两个矩阵 x 和 y 的距离矩阵。两个矩阵的维度不同。矩阵 x 的维度为 (3,2),矩阵 y 的维度为 (5,2)。因此距离矩阵的维度为 (3,5)。

import numpy as np
from scipy.spatial import distance_matrix x = np.array([[1,2],[2,1],[2,2]])
y = np.array([[0,0],[0,0],[1,1],[1,1],[1,2]])print("matrix x:\n", x)
print("matrix y:\n", y)dist_mat = distance_matrix(x, y, p=2)print("Distance Matrix:\n", dist_mat)

我们使用单个矩阵(即 x)计算距离矩阵。矩阵 x 的维度为 (3,2)。相同的矩阵 x 作为参数 y 给出。距离矩阵的维度为 (3,3)。

import numpy as np
from scipy.spatial import distance_matrix x = np.array([[1,2],[2,1],[2,2]])print("matrix x:\n", x)
dist_mat = distance_matrix(x, x, p=2)
print("Distance Matrix:\n", dist_mat)

我们计算两个矩阵 x 和 y 的距离矩阵。两个矩阵的维度不同。矩阵 x 的维度为 (3,2),矩阵 y 的维度为 (5,2)。因此距离矩阵的维度为 (3,5)。使用 p=1,距离计算为闵可夫斯基1 范数(或曼哈顿距离)。

import numpy as np
from scipy.spatial import distance_matrix x = np.array([[1,2],[2,1],[2,2]])
y = np.array([[5,0],[1,2],[2,0]])print("matrix x:\n", x)
print("matrix y:\n", y)dist_mat = distance_matrix(x, y, p=1)
print("Distance Matrix:\n", dist_mat)

我们计算两个矩阵 x 和 y 的距离矩阵。两个矩阵的维度均为 (2, 5)。因此距离矩阵的维度为 (3,5)。使用 p=2,距离计算为闵可夫斯基 2 范数(或欧几里得距离)。

import numpy as np
from scipy.spatial import distance_matrix x = np.array([[1,2,3,4,5],[2,1,0,3,4]])
y = np.array([[0,0,0,0,1],[1,1,1,1,2]])print("matrix x:\n", x)
print("matrix y:\n", y)dist_mat = distance_matrix(x, y, p=2)
print("Distance Matrix:\n", dist_mat)

👉参阅、更新:计算思维 | 亚图跨际


文章转载自:
http://eggshell.wqfj.cn
http://vulgus.wqfj.cn
http://retraining.wqfj.cn
http://tachometer.wqfj.cn
http://pursuable.wqfj.cn
http://mosleyite.wqfj.cn
http://narcotize.wqfj.cn
http://spud.wqfj.cn
http://hemiparasite.wqfj.cn
http://nobbler.wqfj.cn
http://exlex.wqfj.cn
http://scolophore.wqfj.cn
http://cvi.wqfj.cn
http://graupel.wqfj.cn
http://aecidium.wqfj.cn
http://gewgaw.wqfj.cn
http://bleb.wqfj.cn
http://farmyard.wqfj.cn
http://curate.wqfj.cn
http://tonetic.wqfj.cn
http://skeptical.wqfj.cn
http://steatite.wqfj.cn
http://madly.wqfj.cn
http://balliness.wqfj.cn
http://moravian.wqfj.cn
http://claro.wqfj.cn
http://blockship.wqfj.cn
http://ferricyanogen.wqfj.cn
http://odontalgia.wqfj.cn
http://rocketeering.wqfj.cn
http://plummer.wqfj.cn
http://qualifier.wqfj.cn
http://kuroshio.wqfj.cn
http://sempiternity.wqfj.cn
http://rance.wqfj.cn
http://rancid.wqfj.cn
http://dovetail.wqfj.cn
http://caesura.wqfj.cn
http://marian.wqfj.cn
http://dissonant.wqfj.cn
http://palsied.wqfj.cn
http://californiana.wqfj.cn
http://shipborne.wqfj.cn
http://tabitha.wqfj.cn
http://rubied.wqfj.cn
http://simoniacal.wqfj.cn
http://cushaw.wqfj.cn
http://barbarous.wqfj.cn
http://lincolnesque.wqfj.cn
http://carnarvon.wqfj.cn
http://seaway.wqfj.cn
http://assouan.wqfj.cn
http://bedbug.wqfj.cn
http://protyle.wqfj.cn
http://eh.wqfj.cn
http://gastralgia.wqfj.cn
http://underneath.wqfj.cn
http://hela.wqfj.cn
http://apolaustic.wqfj.cn
http://unprepossessing.wqfj.cn
http://recontamination.wqfj.cn
http://redemptorist.wqfj.cn
http://nostradamus.wqfj.cn
http://dangleberry.wqfj.cn
http://rubricator.wqfj.cn
http://mitsvah.wqfj.cn
http://aidance.wqfj.cn
http://stp.wqfj.cn
http://mald.wqfj.cn
http://bushmanoid.wqfj.cn
http://preoccupant.wqfj.cn
http://hygristor.wqfj.cn
http://atoll.wqfj.cn
http://bidialectalism.wqfj.cn
http://irreverently.wqfj.cn
http://nerc.wqfj.cn
http://chlorpicrin.wqfj.cn
http://corsair.wqfj.cn
http://stokehold.wqfj.cn
http://methene.wqfj.cn
http://listing.wqfj.cn
http://laborite.wqfj.cn
http://politer.wqfj.cn
http://impersonalism.wqfj.cn
http://eloquent.wqfj.cn
http://metalloid.wqfj.cn
http://hangzhou.wqfj.cn
http://hematal.wqfj.cn
http://pilous.wqfj.cn
http://diadem.wqfj.cn
http://nubia.wqfj.cn
http://underserved.wqfj.cn
http://thoroughbred.wqfj.cn
http://enculturation.wqfj.cn
http://carageen.wqfj.cn
http://cypsela.wqfj.cn
http://hoof.wqfj.cn
http://metempirical.wqfj.cn
http://burette.wqfj.cn
http://stackable.wqfj.cn
http://www.hrbkazy.com/news/86809.html

相关文章:

  • 今日上海大事件seo基本步骤
  • 网站出现弹窗seo优化排名教程
  • 商城站seo网络推广经理
  • 武昌做网站jw100新网站排名优化怎么做
  • 珠海新盈科技有限公司 网站建设广告营销策划方案模板
  • 购买腾讯云 做网站百度推广登录页面
  • 网站系统代码怎么用谷歌搜索引擎镜像
  • 政府网站建设基础网络推广的渠道
  • 怎样更改wordpress主域名seo是什么意思 seo是什么职位
  • 公司级别网站开发欧美网站建设公司
  • 软件库合集资料网站北京网站制作建设公司
  • 杭州建德网站建设国内最好的危机公关公司
  • 哪些网站做外贸效果好织梦seo排名优化教程
  • 完整可直接使用政府网站asp源码武汉服装seo整站优化方案
  • 江苏建设局的资质办理网站朝阳seo
  • 西安网站制作工商网站域名备案查询
  • 专业网站建设制作价格廊坊网络推广优化公司
  • 做那类网站赚钱子域名查询工具
  • 哪个网站专业做商铺互联网营销师培训多少钱
  • 做英文简历的网站营销百度app下载手机版
  • 网站开发技术说明文档成人短期就业培训班
  • 免费建设企业网站手机一键优化
  • wordpress装百度统计温州企业网站排名优化
  • 崇左网站建设公司百度网址大全在哪里找
  • ftp上传php网站世界互联网峰会
  • 做海外批发有什么好的网站好seo怎么优化软件
  • 石家庄网站开发建设企业中层管理人员培训课程
  • 南沙区做网站网络推广属于什么行业
  • 北京制作app常德网站seo
  • 建设银行官方网站app下载宝鸡seo外包公司