| Author |
Message |
charles
Guest
|
Posted:
Wed Dec 22, 2004 5:26 pm Post subject:
How I can to see alls channels in just one graphic? |
|
|
Hi. I need printing all the channels for just one graphic in matlab.
My files are matrices of 23 channels per row.
Thanks!
charles |
|
| Back to top |
|
 |
Randy Yates
Guest
|
Posted:
Wed Dec 22, 2004 5:31 pm Post subject:
Re: How I can to see alls channels in just one graphic? |
|
|
"charles" <candres13@hotmail.com> writes:
| Quote: | Hi. I need printing all the channels for just one graphic in matlab.
My files are matrices of 23 channels per row.
Thanks!
charles
|
Hi charles,
Check out the "subplot" command.
--
Randy Yates
Sony Ericsson Mobile Communications
Research Triangle Park, NC, USA
randy.yates@sonyericsson.com, 919-472-1124 |
|
| Back to top |
|
 |
charles
Guest
|
Posted:
Thu Dec 23, 2004 3:41 pm Post subject:
Re: How I can to see alls channels in just one graphic? |
|
|
Hi Randy. The command subplot print in diferentes windows, i need the
graphics in the same windows.
Each channel is possible to see in windows separated. This case is for
23 channels.
Thanks
Charles |
|
| Back to top |
|
 |
Ravi Srikantiah
Guest
|
Posted:
Thu Dec 23, 2004 4:41 pm Post subject:
Re: How I can to see alls channels in just one graphic? |
|
|
charles wrote:
| Quote: | Hi Randy. The command subplot print in diferentes windows, i need the
graphics in the same windows.
Each channel is possible to see in windows separated. This case is for
23 channels.
Thanks
Charles
|
Use "hold on" before issuing the next plot command. |
|
| Back to top |
|
 |
Randy Yates
Guest
|
Posted:
Thu Dec 23, 2004 5:58 pm Post subject:
Re: How I can to see alls channels in just one graphic? |
|
|
"charles" <candres13@hotmail.com> writes:
| Quote: | Hi Randy. The command subplot print in diferentes windows,
|
For your future reference, when you are referring to graphical
elements on a computer system, the term "window" is usually meant to
be the composite collection of graphical elements such as the title
bar, scroll bars, system menu, client area, and borders.
| Quote: | i need the
graphics in the same windows.
Each channel is possible to see in windows separated. This case is for
23 channels.
|
As someone else pointed out, you want to use the "hold on"
command and then issuing multiple "plot" commands.
Try reading the Matlab help.
--
Randy Yates
Sony Ericsson Mobile Communications
Research Triangle Park, NC, USA
randy.yates@sonyericsson.com, 919-472-1124 |
|
| Back to top |
|
 |
|
|
|
|