How to draw a vector 1x91 double

2 visualizzazioni (ultimi 30 giorni)
Andrea Cesaro
Andrea Cesaro il 23 Mar 2021
Commentato: Andrea Cesaro il 23 Mar 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 Commenti
Walter Roberson
Walter Roberson il 23 Mar 2021
plot(q, vector) ?
Andrea Cesaro
Andrea Cesaro il 23 Mar 2021
Yes, but in this way I find a curve and not the vector moves

Accedi per commentare.

Risposta accettata

KSSV
KSSV il 23 Mar 2021
vec = rand(1,91) ; % dummy data
q = 1:length(vec) ;
plot(q,vec)
  1 Commento
Andrea Cesaro
Andrea Cesaro il 23 Mar 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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Graph and Network Algorithms in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by