I have a workspace of two columns of x and y. it is a 26*2 matrix. How do i can plot it?

回答 (1 件)

KSSV
KSSV 2021 年 4 月 19 日

0 投票

Let A be your workspace variable of size 26*2.
x = A(:,1) ;
y = A(:,2) ;
plot(x,y)
REad about the function plot.

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

質問済み:

2021 年 4 月 19 日

回答済み:

2021 年 4 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by