<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><META content="MSHTML 5.50.4937.800" name=GENERATOR></HEAD><BODY><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>Hi VRF'ers</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>I have a problem with an ActiveX Control. We're using the "NcPortIO" control to cotrol an instrument connected to the LPT port.</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>The instrument is controled by a dedicated Vee-driver (a vee library, written by us selves, with different commands for the instrument).</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>My problem is, that it seems, that the ActiveX Control Reference needs to be placed on the "Main" function of my main vee library. As not all our test systems use this instrument, it would be nice, if we could place the ActiveX Control Reference in the driver library, so that we don't need to install the NcPortIo dll on all our test systems.</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>Does anybody have a suggestion for this?</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>B.R.</FONT></SPAN></DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2></FONT></SPAN> </DIV><DIV><SPAN class=077083109-29042004><FONT face=Arial size=2>Martin</FONT></SPAN></DIV>---<BR>You are currently subscribed to vrf as: rsb@soco.agilent.com<BR>To subscribe send a blank email to "join-vrf@it.lists.it.agilent.com".<BR>To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".<BR>To send messages to this mailing list, email "vrf@agilent.com". <BR>If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com".</BODY></HTML>
Jeff Davis
Lead Software Test Engineer
CDI Engineering Solutions Aerospace Technologies
Embedded Systems and Electronics
3137 E Elwood # 160
Phoenix, Arizona 85034
Phone: (602)431-4497 (x226)
Cell: (480)330-1431
Fax: (602)431-4435
> -----Original Message-----
> From: SPANGENBERG,SASCHA (A-Scotland,ex1)
> [mailto:sascha_spangenberg@agilent.com]
> Sent: Wednesday, April 28, 2004 09:11 AM
> To: VRF
> Subject: [vrf] Binding Matlab Figures to Vee Panels
>
>
> Thanks Bill - that's a good idea
>
> I guess one last thing remains though:
> Is it possible to bind a matlab figure into a Vee Panel
> so that they don't come up in separate windows?
>
> S.
>
> > -----Original Message-----
> > From: bill.ossmann@philips.com [mailto:bill.ossmann@philips.com]
> > Sent: 28 April 2004 16:33
> > To: PDL-LISTS,VRF (A-Lists,unix1)
> > Subject: [vrf] RE: Plotting multiple Traces at once?
> >
> >
> >
> >
> >
> >
> > You could use the Matlab plot() function.
> >
> > plot(x,y), where x is a 1-D array of the independent variable
> > and y is your
> > 2-D array, will do what you want as long as one of the
> > dimensions of y is
> > the same length as x. If you do not have an independent
> > variable, plot(y)
> > will plot the columns of y or plot(y') will plot the rows.
> >
> > Since you have something like 100 traces you might also want
> > to investigate
> > Matlab's 3D plotting functions such as mesh(), waterfall(),
> > surf(), and
> > contour(). They are not as complicated as the documentation
> > looks. Most of
> > them work with just a single argument, or just
> one-dimensional x and y
> > arguments and two-dimensional z. Ignore the color arguments
> until you
> > decide you need them, which may be never.
> > --
> > Bill Ossmann
> > Philips Ultrasound
> > e-mail: bill.ossmann@philips.com
> > --------------------------------------------------------------
> > -------------------------
> >
> >
> > Unfortunately I have a variable number of traces coming in
> so I can't
> > just "wire" the traces to the graph.
> > Also this would be very laborious for a large number of
> > traces (say 100
> >
> >
> > Sascha
> > > -----Original Message-----
> > > From: Pickles, Warren [mailto:Warren.Pickles@tycoelectronics.com]
> > > Sent: 28 April 2004 13:54
> > > To: PDL-LISTS,VRF (A-Lists,unix1)
> > > Subject: [vrf] RE: Plotting multiple Traces at once?
> > >
> > >
> > > Sascha,
> > >
> > > You're right the XY trace won't take a 2D array. But you can
> > > add an input
> > > pin(s), and split your 2D array into 1D arrays. Say your 2D
> > > array has each
> > > column containing the data points of one trace. Then
> > > ary[*,0] gives you the
> > > first column, ary[*,1] the second, and so on.
> > >
> > > Warren
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: SPANGENBERG,SASCHA (A-Scotland,ex1)
> > > [mailto:sascha_spangenberg@agilent.com]
> > > Sent: 28 April 2004 13:42
> > > To: VRF
> > > Subject: [vrf] Plotting multiple Traces at once?
> > >
> > >
> > > Hi All
> > >
> > > is it possible to plot multiple traces in one graph at once?
> > >
> > > E.g. I have a 2D Array with each column (or row) containing
> > > the data points of one trace.
> > >
> > > I tried to feed this into a XY Trace but it only takes a
> > Scalar or 1D
> > > Array.
> > >
> > > Running a for loop over all the columns and adding a new
> > trace to the
> > > graph is
> > > very slow (for large traces > 100) so I hope for a faster
> solution.
> > >
> > > Regards,
> > > Sascha.
> > >
> > > ---
> > > You are currently subscribed to vrf as:
> > > Warren.Pickles@tycoelectronics.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".
> > >
> > > ---
> > > You are currently subscribed to vrf as:
> > sascha_spangenberg@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".
> > >
> >
> > ---
> > You are currently subscribed to vrf as: bill.ossmann@philips.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".
> >
> >
> >
> >
> > ---
> > You are currently subscribed to vrf as:
> sascha_spangenberg@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".
> >
>
> ---
> You are currently subscribed to vrf as: jeff.davis@cdi-es.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".
>
> ______________________________________________________________________
> This email has been scanned by the MessageLabs Email Security System.
> For more information please visit http://www.messagelabs.com/email
> ______________________________________________________________________
>
______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________
---
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".