日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

numpy 函数一:linspace

發(fā)布時間:2023/12/18 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 numpy 函数一:linspace 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

接觸 numpy 遇到的第一個函數(shù)可能就是 linspace 函數(shù),但是對于我們這種沒有學過 matlab 的人來說,根本不知道這是什么。

所以只能自己查資料。
詞典顯示:

線性等分向量 線性平分矢量 線性平分向量

那么怎么用呢?

linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)Return evenly spaced numbers over a specified interval.Returns `num` evenly spaced samples, calculated over theinterval [`start`, `stop` ].The endpoint of the interval can optionally be excluded.Parameters----------start : scalarThe starting value of the sequence.樣本起始值stop : scalarThe end value of the sequence, unless `endpoint` is set to False.樣本終止值In that case, the sequence consists of all but the last of ``num + 1``evenly spaced samples, so that `stop` is excluded. Note that the stepsize changes when `endpoint` is False.num : int, optional樣本個數(shù)Number of samples to generate. Default is 50.endpoint : bool, optionalIf True, `stop` is the last sample. Otherwise, it is not included.Default is True.如果為真,則最后一個值(stop對應的值)包含在樣本中retstep : bool, optionalIf True, return (`samples`, `step`), where `step` is the spacingbetween samples.如果為真,返回樣本及步長dtype : dtype, optionalThe type of the output array. If `dtype` is not given, infer the datatype from the other input arguments.樣本的數(shù)據(jù)類型.. versionadded:: 1.9.0Returns-------samples : ndarrayThere are `num` equally spaced samples in the closed interval``[start, stop]`` or the half-open interval ``[start, stop)``(depending on whether `endpoint` is True or False).step : floatOnly returned if `retstep` is TrueSize of spacing between samples.See Also--------arange : Similar to `linspace`, but uses a step size (instead of thenumber of samples).logspace : Samples uniformly distributed in log space.

例:

import numpy as np import scipy as sp import pylab as pl# 從0到4pi之間,取100個樣點 x = np.linspace(0,4*np.pi,100)pl.plot(x,np.sin(x)) pl.show()

結(jié)果:

轉(zhuǎn)載于:https://www.cnblogs.com/tk091/p/4520986.html

總結(jié)

以上是生活随笔為你收集整理的numpy 函数一:linspace的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。