How do I draw a horizontal line at a fixed height on the y axis and print the coordinates of the points I intercept?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I have a matlab plot with 6 curves (or functions).
My y-axis ranges from 0 to 255.
My x-axis ranges from -20 to 20.
How do I "draw" a horizontal line (for example y = 80) and the points it intercepts, print the coordinates and which function they refer to. The functions are differentiated in the legend by colors and names.
0 Commenti
Risposte (1)
KSSV
il 11 Ott 2021
th = linspace(0,2*pi) ;
x = sin(th) ;
plot(th,x)
hold on
line([th(1) th(end)],[0.4 0.4])
For finding intersections use: https://in.mathworks.com/matlabcentral/fileexchange/22441-curve-intersections
0 Commenti
Vedere anche
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!