Plotting elements of an array
7 ビュー (過去 30 日間)
古いコメントを表示
I have an array and I would like to plot the number 1 against the value of the first element, 2 against the value of the second element, and so on, up to the final element which is the 40,000th element.
How do I go about doing this?
0 件のコメント
回答 (1 件)
Star Strider
2015 年 1 月 30 日
My approach:
y = randi(10, 4E+4, 1); % Simulated Data
x = 1:length(y); % ‘x’ (Independent) Variable
figure(1) % Plot
plot(x, y)
grid
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!