Measurement Studio for VB6

cancel
Showing results for 
Search instead for 
Did you mean: 

cwgraph multiplot[VB]

I want to make a graph using cwgraph with a 3 dimensions var. but just take the two last dimension as data....
i explain :
i got for example : plotdata(2,5,5)
i want to trace plotdata as if it was just plotdata(5,5) but without using another var...

i try cwgraph.ploty plotdata(1) bur it on't work is there a solution or do i have to use another var???
0 Kudos
Message 1 of 2
(3,061 Views)
I don't see any way to use one declaration variable which is a three dimensional matrix already, as in your case. The only way that I am familiar with is the CWGraph3D1.Plot3DCurve ArrayX, ArrayY, ArrayZ. This takes three input arrays representing your X values, Y values, and Z values. In your case, it may be best if you were to "break" up your one large 3D array into three samller vectors, and go from there.
0 Kudos
Message 2 of 2
(3,061 Views)