explain about plot (z_x,z_y)

3 ビュー (過去 30 日間)
희원 김
희원 김 2022 年 6 月 9 日
回答済み: M.B 2022 年 6 月 9 日
Can you explain what does mean of plot (z_x(:,1),z_y(:,1:2))?

回答 (1 件)

M.B
M.B 2022 年 6 月 9 日
You get a two graph plot where the x axis data is the first column of z_x, and y axis data is the first two columns of z_y.
It's equivalent to:
plot(z_x(:, 1), z_y(:, 1)); hold on;
plot(z_x(:, 1), z_y(:, 2));

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by