Sign in

username:

password:



Not a member?

Search matlab



Search tips

Subscribe to matlab



matlab by Keywords

Atanh | Autocorrelation | Bandpass Filter | C++ | Conv | Database | Deconv | Excel | FFT | Filter | Filtering | FIR | Fourier Transfrom | FSK | Gaussian Noise | Haykin | IFFT | Image | Java | LFSR | LMS | LPC | MEX | OFDM | QPSK | Radix | Random | Sampling | Segmentation | Simulink | Visual Basic | Waveform | Wavelet

Discussion Groups

Discussion Groups | Matlab DSP | How to set plot parameters in a m-file via commands...?

Technical discussion about Matlab and issues related to Digital Signal Processing.

  

Post a new Thread

How to set plot parameters in a m-file via commands...? - "neubauer.bjoern" - May 18 21:13:23 2008



Hello,

I do have a plot within an axes within a GUI. I Plot a couple of graph
in the same axes using the hold on and hold off command.

QUESTION:
1) How can I assign different colours to the different graphs using
command in the m-file for the GUI?
2) How can I set text to the abszissa and ordinate(s)using command in
the m-file for the GUI?
3) How can I set text to a certain graph within the plot; for example
a parameter which was used to plot it, like k=3.4
Thank you a lot in advance for your help.
Best regards,
björn



(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )

Re: How to set plot parameters in a m-file via commands...? - ashe...@yahoo.com - May 27 6:31:19 2008

try this

1)plot(x,y,'color','blue','fontsize',12,'fontweigtht','b');

2)text(min(x),min(y),'string');

3)go for matlab help "help text"



(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )