How to draw a vector 1x91 double

2 Ansichten (letzte 30 Tage)
Andrea Cesaro
Andrea Cesaro am 23 Mär. 2021
Kommentiert: Andrea Cesaro am 23 Mär. 2021
How can i draw a vector 1x91 that it depends on a coordinate q. I mean that I must draw this vector in a graph where the vector moves with the 91 values of the q, that is one value of q, one value of the vector 1x1.
  2 Kommentare
Walter Roberson
Walter Roberson am 23 Mär. 2021
plot(q, vector) ?
Andrea Cesaro
Andrea Cesaro am 23 Mär. 2021
Yes, but in this way I find a curve and not the vector moves

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 23 Mär. 2021
vec = rand(1,91) ; % dummy data
q = 1:length(vec) ;
plot(q,vec)
  1 Kommentar
Andrea Cesaro
Andrea Cesaro am 23 Mär. 2021
Ok this is the standar representation of a vector, my problem is most difficult because I must represent this vector in a cartesian graph (x,y) and it has to move in this graph as a function of q

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by