Plot vectors in matlab as a straight line
Afficher commentaires plus anciens
I have the following two vectors:
1. vector r (1*300000) . This vector has the following values:
All indices from 1 to 122001 have values 2000
All indices from 122002 to 202001 have values 7000
All indices from 202001 to 300000 have values 1200
2. vector T (1*300000). This vector has values starting from 0, and consecutive values increment by 0.000001.
My goal is to plot r vs T. There should be a 3 straight lines in the figure (2 jumps, where value of r changes from 2000 to 7000 and other where value of r changes from 7000 to 1200).
I appreciate any help.
Thanks.
Réponse acceptée
Plus de réponses (1)
plot(T, r)
2 commentaires
Jhilam Biswas
le 30 Oct 2015
Thorsten
le 30 Oct 2015
So what do you see when you use this command?
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!