plotting 2 graphs on the same axes
古いコメントを表示
I have to plot an x-y equation and also a data set of x,y coordinates on the same axes, but i cant figure out how to have them on the same graph. Help!
採用された回答
その他の回答 (1 件)
KSSV
2020 年 10 月 21 日
Read about hold on.
plot(rand(1,10))
hold on
plot(rand(1,10))
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!