Problems using Plot function
4 ビュー (過去 30 日間)
古いコメントを表示
SIDDHARTHA SIDDHARTHA
2023 年 6 月 5 日
コメント済み: SIDDHARTHA SIDDHARTHA
2023 年 6 月 5 日
Hi,
I am trying to use the plot function, however, there is no line visible on the graph. lets say, I have
A=[1.1,1.2,1.3];
B=[2.1,2.2,2.3];
C=[3.1,3.2,3.3];
What I want is a plot of [1:3:1] on the X axis and values A(1),B(1),C(1) plotted with respect to point 1, A(2),..C(2) with respect to 2 and A(3)..C(3) with respect to point 3 on X axis.
I thought I would first declare a 3X3 zero matrix and subsequently save all the values of A B C in this array, and try to plot it. No matter what I am doing, I am getting a null plot.
A=[1:3];
B=[4:6];
C=[5:3];
for i=1:3
f(i)=A(i)^2;d(i)=5*B(i);v(i)=A(i)+B(i);
plot (i,f(i),d(i),v(i))
hold on
end
can anyone please help? Thanks in advance
0 件のコメント
採用された回答
Walter Roberson
2023 年 6 月 5 日
You are plotting one point at a time. By default, plot() does not put in any markers, and plot() can only draw lines when there are at least two adjacent finite values.
You should postpone the plot() until after the loop.
Also, 5:3 is the same as 5:1:3 . The first element is greater than the last element and the increment (1) is positive, so the result of 5:3 is empty.
Note also that plot(VALUE1,VALUE2,VALUE3,VALUE4) would be treated more like plot(VALUE1,VALUE2), plot(VALUE3,VALUE4) -- that is, you are asking to plot i against f(i), and to plot d(i) against v(i)
その他の回答 (1 件)
Pramil
2023 年 6 月 5 日
If you want to plot all A B C on the same plot you can use hold on like this :
A=[1.1,1.2,1.3];
B=[2.1,2.2,2.3];
C=[3.1,3.2,3.3];
X = 1:3;
xlabel('X');
ylabel('Value');
plot(X,A);
hold on
plot(X,B);
plot(X,C);
hold off
参考
カテゴリ
Help Center および File Exchange で Discrete Data Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!