Plot vectors of unqual length

조회 수: 1 (최근 30일)
Kishore Selvaraj
Kishore Selvaraj 2019년 1월 16일
편집: madhan ravi 2019년 1월 16일
How to plot vectors of unequal length
size of A vector is 150x1
size of B vector is 10x1
i want to plot (A,B) how to plot it
*size of A and B vector may vary depend upon the data aquired

답변 (1개)

madhan ravi
madhan ravi 2019년 1월 16일
편집: madhan ravi 2019년 1월 16일
Read about linspace()
A=1:150; % fake data for example
B=1:10;
B=linspace(min(B),max(B),numel(A));
plot(A,B)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by