본문 바로가기
IT/MATLAB

linspace(a, b, n) 함수

by Jang HyunWoong 2014. 12. 19.

<기본적인 정의>

linspace  

Generate linearly spaced vectors

Syntax 

    <pre>y = linspace(a,b) y = linspace(a,b,n) </pre>

Description 

The linspace function generates linearly spaced vectors. It is similar to the colon operator ":", but gives direct control over the number of points.

y = linspace(a,b) generates a row vector y of 100 points linearly spaced between and including a and b.

y = linspace(a,b,n) generates a row vector y of n points linearly spaced between and including a and b.

 

 

예를 들면 더 쉽게 이해할 수 있다. 

y = linspace(a,b,n)

n의 개수만큼 a, b 사이의 선형공간의 y 값을 제공하는 것이다. 

ex)

y = linspace(1, 500, 3) = [ 1, 250.5, 500] 

반응형