adding two ticks to form a horizontal line
Mostra commenti meno recenti
How do I add two ticks in the plot editor so that it gives me a perfect horizontal straight line?
Risposte (2)
Jonas
il 30 Giu 2021
if you want to add a horizontal line to you plot you can use yline. if you want a ytick at that specific value you can write
yline(3.3614);
yticks(unique([yticks() 3.3614]));
4 Commenti
shahriar sowad
il 30 Giu 2021
Modificato: shahriar sowad
il 30 Giu 2021
shahriar sowad
il 30 Giu 2021
Jonas
il 30 Giu 2021
yes, add the two lines at the end of your code.
note that you just need one 'hold on' command, this will have the effect that all later plots are added to the current figure
shahriar sowad
il 30 Giu 2021
shahriar sowad
il 30 Giu 2021
0 voti
Categorie
Scopri di più su Line 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!