plotting out an equation with increments
Mostra commenti meno recenti
Hello, im a total noob at this
so im trying to plot out air speed with the following equation
V = sqrt(2Pd/sigma)
v = air speed PD = dynamic preasure sigma = air density
I need to show the range of dynamic pressures from 500 pascals to 800 at increments of 50
how would I go about writing this out?
Risposte (1)
Star Strider
il 11 Mag 2016
Use the colon ‘:’ operator to create the vector you want:
Pd = 500 : 50 : 800;
Categorie
Scopri di più su Dynamic System Models in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!