09-10-2007 05:18 AM
09-10-2007 06:01 AM - edited 09-10-2007 06:01 AM
normally, if you display an array of 3 graphs (clusters of x and y arrays), the display on the x-y graph should be 3 plots, with the colors set in the plot legend.
could it be that your graph is not x-y graph? or that the plots 2 and 3 are set to invisible? or simply out of range?
Message Edited by Gabi1 on 09-10-2007 01:01 PM
09-10-2007 06:13 AM
09-10-2007 06:19 AM
09-10-2007 06:25 AM
09-10-2007 06:48 AM
09-10-2007 07:43 AM
09-10-2007 07:58 AM
09-10-2007 08:17 AM
ok your first problem is pretty simple:
the build graphs express vis gives as output an array of clusters (each cluster includes 2 arrays, one for x values, one for y values).
when you combine 3 such arrays, if you dont concatenate the inputs, your combination will be a 2D array of graphs, that cannot be handled by the x-y graph
easy solution: right click on the build array -> concatenate inputs.
however, several graph inputs comes from case structures which are not terninated in the false case - you might want to check into that.
09-10-2007 11:24 AM
Gabi is right. You don't have a:
...3 seperate "1d array of cluster of 2elements" combined on xy graph ....
as you say in the title.
You have 3 seperate "1d array of cluster of 2 arrays", each element in the (toplevel) 1D array is a plot with several points, so concatenating the arrays will give you a 1D array that has as many plots as the sum of plots in each individual 1D array.
So Gabi's solution is correct.
(Further clarification: XY graphs cannot handle 2D arrays. For example if each plot is in one of the other legal plot data formats (1D array of a cluster of xy points, 1D complex array), you also cannot use "built array", but in these cases you can use "built cluster array" (see image). This does not apply to your situation, though. ;)).