|
|
How to put vertical line in graph?
I'm trying to put vertical dotted lines in a graph of a signal, to mark
the beginning and end of a window of the signal. Even solid light
colored lines would work fine. Is this possible? I have been completely
through the plot documentation and the graphics documentation with no
luck.
Thanks in advance for any help.
|
|
0
|
|
|
|
Reply
|
billjosephson (77)
|
12/2/2006 5:01:24 AM |
|
Something like that
function h = grinsvline(x)
% grinsvline(): insert vertical line in the current graph
h = line([x x], get(gca, 'YLim'), 'Color', [0 0 0]);
Kirill
|
|
0
|
|
|
|
Reply
|
kirillandreev (111)
|
12/2/2006 6:44:15 AM
|
|
BillJosephson wrote:
>
>
> I'm trying to put vertical dotted lines in a graph of a signal, to
> mark
> the beginning and end of a window of the signal. Even solid light
> colored lines would work fine. Is this possible? I have been
> completely
> through the plot documentation and the graphics documentation with
> no
> luck.
>
> Thanks in advance for any help.
>
>
Look here:
<http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=9973&objectType=file>
HTH,
John D'Errico
|
|
0
|
|
|
|
Reply
|
woodchips (7921)
|
12/2/2006 10:45:33 AM
|
|
|
2 Replies
26 Views
(page loaded in 0.082 seconds)
Similiar Articles: How to draw a vertical line at the peak of a graph - comp.soft-sys ...How to draw a vertical line at the peak of a graph - comp.soft-sys ... Barchart with Graph Template Language - comp.soft-sys.sas ... How to draw a vertical line at the ... Moving horizontal and vertical line on the graph - comp.soft-sys ...To select the point, I need to move one horizontal and vertical line on graph to judge the correct location and finally selecting the point. May I know what is the tool ... How can I create this plot in matlab? a 3D bar graph of a 2D table ...How can I create this plot in matlab? a 3D bar graph of a 2D table with mar ... plotting vertical lines - comp.soft-sys.matlab How can I create this plot in matlab? a 3D ... Vertical x-tick labels on bar charts - comp.soft-sys.matlab ...How to draw a vertical line at the peak of a graph - comp.soft ... Vertical x-tick labels on bar charts - comp.soft-sys.matlab ... How can set their alignment so they read ... Plots with vertical x axes - comp.soft-sys.matlabHow to draw a vertical line at the peak of a graph - comp.soft-sys ... plot scroll bars, x-axis ... sys.matlab Set position of tick labels - comp.soft-sys.matlab Set ... How to draw points along a line at every 5 or 10 data point ...I can go with just 'lines,' but I'd like to put points(markers) as well at ... How to draw a vertical line at the peak of a graph - comp.soft-sys ... How to draw points ... Multiple Series on a Bar Graph with different x and y values ...how do I put these together, so it understands the dates from plot 1 ... How to draw a vertical line at the peak of a graph - comp.soft-sys ... Multiple Series on a Bar Graph ... Histogram with gplot - comp.soft-sys.sas... observations with > value 0, let symbol1 map to those, and set ... How to draw a vertical line at the peak of a graph - comp.soft-sys ... Histogram with gplot - comp ... Multiple line plots, two y axes - comp.soft-sys.matlab... to plot a total of four lines onto a single line graph. ... To fix the first problem, I put all capability of ... Plot vertical lines on plots - comp.soft-sys.matlab ... label (annotate) bar graph - comp.soft-sys.matlabI put the sample number on the x-axis. Can I label the date ... graph on maps? - comp.soft-sys.matlab label (annotate) bar graph - comp.soft-sys.matlab Plot vertical lines ... How to Graph a Vertical & Horizontal Line | eHow.comA graph is composed of a y-axis and an x-axis, and a line can be placed on the graph accurately by plotting the correct points. Linear equations involving y or x can ... How to Graph Vertical Lines on Ti84 | eHow.comGraphing calculators simplify the graphing process immensely. Once students begin Algebra II, Texas Instruments' graphing calculators become a fundamental part of the ... 7/23/2012 10:30:30 AM
|
|
|
|
|
|
|
|
|