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

Antworten (1)

KSSV
KSSV am 19 Apr. 2021

0 Stimmen

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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 19 Apr. 2021

Beantwortet:

am 19 Apr. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by