simple plotting in matlab
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
x=1:1:30 h=70 y=h/x
i understand they are unequal in length but how would i plot it dividing 70 by x one at a time to plot
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 4 Avr 2014
Modifié(e) : Azzi Abdelmalek
le 4 Avr 2014
x=1:1:30
h=70
y=h./x
plot(x,y)
4 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!