How to plot a horizontal line?
Mostra commenti meno recenti
My function is just y=2050 and I need to plot it w/o using "yline", because it's not a graph, actually. I just type this:
x=[0:0.1:110];
y=[0:10:2060];
g=2050;
plot(x,g)
And I don't get anything. Like, completely anything:

And also after that I need to mark a point (100,2050) and be able to make it bigger than my graph.
How do I solve these problems?
Risposta accettata
Più risposte (2)
darova
il 12 Mag 2020
1 voto
Try this

5 Commenti
Mikhail Konovalov
il 13 Mag 2020
darova
il 13 Mag 2020
plot(x,g+x*0)
Mikhail Konovalov
il 13 Mag 2020
darova
il 13 Mag 2020
Can you make a simple sketch of the result you expect?
Mikhail Konovalov
il 13 Mag 2020
y = 0:0.1:110;
x = 2050.* ones(length(y));
plot(y,x)
xlim([1 110])
1 Commento
Mikhail Konovalov
il 13 Mag 2020
Categorie
Scopri di più su 2-D and 3-D Plots 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!
