Clear Filters
Clear Filters

How to draw a vector 1x91 double

2 views (last 30 days)
Andrea Cesaro
Andrea Cesaro on 23 Mar 2021
Commented: Andrea Cesaro on 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 Comments
Andrea Cesaro
Andrea Cesaro on 23 Mar 2021
Yes, but in this way I find a curve and not the vector moves

Sign in to comment.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!