You could use a Matlab plot. You can change the line color and style using
the set() function. See handle graphics object properties in the Matlab
Help Desk.
Example:
h=plot(x) %plots a 2D array as separate traces, returns a
vector of handles to the lines in h
set(h(1), 'color',...,'linestyle',...'linewidth',...) %sets the
properties for the first trace
set(h(2),'color'...) %sets the properties for the second trace
etc....
Or to set up the line styles in advance:
hf=figure %Creates a figure window
ha=axes %Creates axes in the figure
set(ha,'colororder','.....','lineStyleOrder','....') %Sets default
properties for traces drawn on the axes
plot(x) %Plots a 2D array.
See the Matlab Help Desk for more details
--
Bill Ossmann
Philips Ultrasound
e-mail: bill.ossmann@philips.com
-----------------------------------------------------
Dear Vrf,
I need an XY trace object with 26 traces. The regular XY trace allows only
12 traces. I tried to multiplex all 26 channels into a single trace but it
did not help because each trace should be clearly distinguished from the
others by color or something else. Any suggestions?
Regards
Omer Akbas
Arcelik, Istanbul
---
You are currently subscribed to vrf as: rsb@soco.agilent.com
To subscribe send a blank email to "join-vrf@it.lists.it.agilent.com".
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com".