From: Jetson Ronald on 9 Jun 2010 02:12 Hello This is Ronald. I need to plot several earthquake records in a single figure. I could use subplot but I do not want that. These records were from the same earthquake and recorded at different distances. By plotting them according to the epicentral distance I can read better rather than using subplot. I also would like to know how do I plot these records on the map? Can somebody suggest me a way to do these? Thank you
From: kinor on 9 Jun 2010 06:41 "Jetson Ronald" <ajetsonronald(a)yahoo.co.in> wrote in message <hunbbk$otk$1(a)fred.mathworks.com>... > Hello > This is Ronald. > I need to plot several earthquake records in a single figure. I could use subplot but I do not want that. These records were from the same earthquake and recorded at different distances. By plotting them according to the epicentral distance I can read better rather than using subplot. > I also would like to know how do I plot these records on the map? > > Can somebody suggest me a way to do these? > > Thank you sorry if this is not the answer: help hold on help legend help plot hth kinor
From: Jetson Ronald on 9 Jun 2010 07:55 "kinor " <kinor.removethiswithdot(a)gmx.de> wrote in message <hunr41$q1h$1(a)fred.mathworks.com>... > "Jetson Ronald" <ajetsonronald(a)yahoo.co.in> wrote in message <hunbbk$otk$1(a)fred.mathworks.com>... > > Hello > > This is Ronald. > > I need to plot several earthquake records in a single figure. I could use subplot but I do not want that. These records were from the same earthquake and recorded at different distances. By plotting them according to the epicentral distance I can read better rather than using subplot. > > I also would like to know how do I plot these records on the map? > > > > Can somebody suggest me a way to do these? > > > > Thank you > > sorry if this is not the answer: > > help hold on > help legend > help plot > > hth kinor Hi Thank you for the suggestion. According to your suggestion it will plot on top of each other and I do not want that. I want to plot one by one next to each other with single x and y axis. thank you
From: sscnekro on 9 Jun 2010 17:19 Can you drop a link to to an existing plot somewhere, I mean "I want create something like this"?
From: TideMan on 9 Jun 2010 17:44 On Jun 9, 6:12 pm, "Jetson Ronald" <ajetsonron...(a)yahoo.co.in> wrote: > Hello > This is Ronald. > I need to plot several earthquake records in a single figure. I could use subplot but I do not want that. These records were from the same earthquake and recorded at different distances. By plotting them according to the epicentral distance I can read better rather than using subplot. > I also would like to know how do I plot these records on the map? > > Can somebody suggest me a way to do these? > > Thank you You need to get your terminology right, otherwise we cannot understand you. The subject says you want to plot multiple figures, but the text says a single figure. Which is it? When you say "earthquake records", does this mean acceleration (or something else) as a function of time at different locations? Or is it some earthquake quantity (Richter perhaps?) at various locations? You say subplot is no good. Why? Are you aware that you can make your own subplots within a figure by defining axes: axes('Position',[left bottom width height]) This defines a panel within the figure where you can plot your record. The figure goes from 0 to 1 in both directions, so to create a panel half the width and height of the figure in the very centre, you'd do this: axes('Position',[0.25 0.25 0.5 0.5])
|
Pages: 1 Prev: delineation of skin boundary Next: frequency translation project(MATLAB) help needed....... |