LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Array of Waveform Graph

Numeric values can be shown in the array.

I want to view Waveform Graph in an array.

How can I make it?

Hyun-ho Lee
hhlee@hhi.co.kr
0 Kudos
Message 1 of 4
(2,798 Views)
If what you want is to see more than one graph in the front
panel, i'm afraid you'll have to put them all, as an array
of graphs is not allowed (anybody correct me if i'm wrong).
If you want to show only one graph but change to another
(like with the index of an array) you can put some kind of
control in the front panel and change the graph input
depending on the value of that control.
Hope this helps

Gorka Larrea
glarrea_1@hotmail.com


* Sent from AltaVista http://www.altavista.com Where you can also find related Web Pages, Images, Audios, Videos, News, and Shopping. Smart is Beautiful
0 Kudos
Message 2 of 4
(2,798 Views)
You can put the graph into a cluster, and that cluster can then go into an
array.

Not that I've actually used this method for anything, so I dunno how well
it'll work.


Gorka Larrea wrote in message
news:0ec4c663.1c51becb@usw-ex0109-069.remarq.com...
> If what you want is to see more than one graph in the front
> panel, i'm afraid you'll have to put them all, as an array
> of graphs is not allowed (anybody correct me if i'm wrong).
> If you want to show only one graph but change to another
> (like with the index of an array) you can put some kind of
> control in the front panel and change the graph input
> depending on the value of that control.
> Hope this helps
>
> Gorka Larrea
> glarrea_1@hotmail.com
>
>
> * Sent from AltaVista ht
tp://www.altavista.com Where you can also find
related Web Pages, Images, Audios, Videos, News, and Shopping. Smart is
Beautiful
0 Kudos
Message 3 of 4
(2,798 Views)
> Gorka Larrea wrote in message
> news:0ec4c663.1c51becb@usw-ex0109-069.remarq.com...
> > If what you want is to see more than one graph in the front
> > panel, i'm afraid you'll have to put them all, as an array
> > of graphs is not allowed (anybody correct me if i'm wrong).
> > If you want to show only one graph but change to another
> > (like with the index of an array) you can put some kind of
> > control in the front panel and change the graph input
> > depending on the value of that control.
> > Hope this helps
> >
> > Gorka Larrea
> > glarrea_1@hotmail.com

"Craig Graham" wrote in message
news:8iladj$p22$1@sponge.lancs.ac.uk...
> You can put the graph into a cluster, and that cluste
r can then go into an
> array.
>
> Not that I've actually used this method for anything, so I dunno how well
> it'll work.

A simple graph cannot go into an array because of ambiguity. For example, if
you later would feed a 2D array (e.g.3x128), It would not be able to decide
if the first graph should contain 3 traces, or if the first three array
elements should have one trace each. There are probably other reasons, too.

Anyway...

The cluster solution works pretty well. I do this all the time e.g. a
cluster with multiple graphs as an array element. This is great for summary
report generation where results for each experiment are in one cluster and
you want to print a few experments per page.
Be aware that you should decide on the number of plots per graph BEFORE
putting them in the cluster. If one of the graphs has only one plot (1-D
array) and you later decide to add another trace (feed it a 2-D array),
LabVIEW will crash very hard.

Cheers
Christian
0 Kudos
Message 4 of 4
(2,798 Views)