02-12-2018 12:37 PM
Can someone show me how to fix this?
Most of the references are in ORANGE
Solved! Go to Solution.
02-12-2018 12:58 PM
I need the ORANGE "Pot Graph" indicator instead of the purple. how would I change the right block diagram to work?
02-12-2018 01:13 PM
Attach and post your actual code, not pictures of code.
02-12-2018 01:24 PM
Well, the purple is an array of clusters while the orange is just a 2D array with lots of duplicate information.
To create the orange from the purple, just autoindex on a FOR loop , unbundle, build, and concatenate. Should be trivial.
02-12-2018 03:18 PM
sorry. here you go.
thanks for your help
02-12-2018 03:41 PM
how do I build it in a 2d array vs. bundling it to a cluster and then unbundle it.
it seems redundant.
02-12-2018 03:49 PM - edited 02-12-2018 03:54 PM
There are missing subVIs.
Your ramp generation seems a bit elaborate. Compare here:
To convert the current array of clusters (xy graph data) to a 2D array with the same information according to your old code, just do something like this:
(Of course this "solution" is specific to your data and makes certain assumptions. It might give undesired results, e.g. if the various plots have a different number of points)
02-12-2018 04:41 PM
I think I got it.
Thanks
One last question.
Can you show me how get rid of green line on graph?
02-12-2018 05:01 PM
These are your X-values. If you don't want them, don't include them in the 2D array!
02-12-2018 05:42 PM
Awesome!!!
That does the trick!!
THANK YOU SO MUCH!