Plotting a line x=constant
107 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
cyberdyne
am 21 Sep. 2011
Beantwortet: Svitlana Strunina
am 29 Mär. 2021
Hi,
What is a good way to plot a straight line parallel to y-axis for a particular x value?
I've used this code but the line is dotted
x=3;
y=0:0.001:0.3; %How much is long
plot(x, y, 'LineWidth', 10) % but is not large enough
1 Kommentar
Ram Lakha Meena
am 27 Aug. 2020
This is what i did and the result:
clear
clc
close all
x=3;
y=0:0.001:0.3; %How much is long
plot(x, y, 'LineWidth', 10) % but is not large enough
Akzeptierte Antwort
Weitere Antworten (3)
Paulo Silva
am 21 Sep. 2011
plot(x*ones(size(y)), y, 'LineWidth', 10)
or
plot(x*ones(1,size(y,2)), y, 'LineWidth', 10)
0 Kommentare
Svitlana Strunina
am 29 Mär. 2021
xline(3);
https://www.mathworks.com/help/matlab/ref/xline.html
0 Kommentare
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!