Why is my plot not showing anything

3 visualizzazioni (ultimi 30 giorni)
W = [1:5] Z= [2:2:10] Plot(w,z)

Risposta accettata

Richard Burnside
Richard Burnside il 21 Giu 2023
Modificato: Richard Burnside il 21 Giu 2023
Your plot command is using lower case w and your data is upper case W. Same for Z.
  3 Commenti
Dami_2.0
Dami_2.0 il 21 Giu 2023
I've corrected that now
w= [1:5] z= [2:2:10] plot(w,z) It's still not plotting
Walter Roberson
Walter Roberson il 21 Giu 2023
w= [1:5]; z= [2:2:10]; plot(w,z)

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots 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