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 Exchange에서 2-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