次のスクリプトを試して、調べてください。
%Aは500行、500列の乱数
A=rand(500,500);
%BはAの全行、一列目を抽出
B=A(:,1);
%xは初期値0.001,刻み幅0.001,最終値0.5のベクトル
x=0.001:0.001:0.5;
%横軸x、縦軸Bをplot
figure;plot(x,B)
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!