Non-linearly Spaced Vector Generator

版本 1.1.0.0 (2.6 KB) 作者: Connor Ott
Generates a vector of elements with exponential, cosine, or logarithmic spacing.
1.3K 次下载
更新时间 2017/10/24

查看许可证

nonLinspace(mn, mx, num, spacetype) returns a vector of non-linearly
spaced elements based on spacing specified by spacetype. This function
was made in order to provide domains for relationships or functions
which require greater resolution in some portions of the domain than
others.
An example would be the vortex panel method for determining pressure
distribution over an airfoil. Since the leading and trailing edges of the
airfoil see greater pressure gradients, more resolution is required in
these places as opposed to the middle of the airfoil, so cosine spacing
would be optimal for for determining panel boundary point distribution.
nonLinVec = nonLinspace(mn, mx, num, 'exp10') returns a vector of
elements with smaller spacing at the beginning of the vector and greater
spacing at the end of the vector based on the curve y = 10^x.

nonLinVec = nonLinspace(mn, mx, num, 'cos') returns a vector of elements
with smaller spacing at the beginning and end of the vector, and greater
spacing in the middle based on the curve y = 1/2(1-cos(x)).

nonLinVec = nonLinspace(mn, mx, num, 'log10') returns a vector of
elements with greater spacing at the beginning of the vector and smaller
spacing at the end of the vector.

Inputs:
mn - The minimum value in the vector.
mx - The maximum value in the vector.
num - The number of elements in the vector.
spacetype - Specifies the type of spacing needed.

Outputs:
nonLinVec - A vector consisting of elements with spacing specified
by spacetype.

Created: 10/12/17 - Connor Ott
Last Modified: 10/23/17 - Connor Ott

引用格式

Connor Ott (2024). Non-linearly Spaced Vector Generator (https://www.mathworks.com/matlabcentral/fileexchange/64831-non-linearly-spaced-vector-generator), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Polynomials 的更多信息
致谢

参考作品: NACA 4 digit Airfoil Generator

启发作品: biasspace

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.1.0.0

Updated text in description and uploaded photo for function.

1.0.0.0