Plot 2 curves on the same graph (with function and data)
3 ビュー (過去 30 日間)
古いコメントを表示
I want to plot 2 curves on 1 graph. However, one curve is a function (f) so I would usually use fplot. The other curve is found with data (t30, A30). I tried to plot them on the same graph but it doesnt work. Can someone help me please? Thank you

2 件のコメント
Walter Roberson
2023 年 12 月 2 日
Because you divide t30 by 1000, your t30 will end up slightly over 0.1 apart from each other. To reach as high as the [0 10] upper bound of the fplot, you would need to be plotting about 95-ish points. Do you have that many?
It is not generally a problem to hold on and plot over an fplot, provided that the range of values is large enough to cover a notable fraction of the area.
syms x
f = x^2 .* cos(x)
fplot(f, [0 10])
hold on
plot(0:5, [.1 .5 -.1 3 4 -2])
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

