LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Solve for XY plot

Solved!
Go to solution

Say I have a line plotted on an XY graph with 10 coordinates being used for the plot (that are known points), is there a way to solve using the scaling of graph and property node to find the associated Y value for a given X value (the unknown points that have been plotted on graph)?

0 Kudos
Message 1 of 12
(315 Views)

An XY graph is a passive indicator, what matters is the data in the wire connected to it and you can analyze that any way you want.

 

I assume you want to find interpolated values for the lines connecting the points and this is trivial math. What have you tried? How well behaved are your points (e.g. are the x values sorted by point index? Do you have vertical segments? Can an x value contain more than one y point? etc.)

 

What is the datatype of your xy graph (1D complex array, array of points, cluster of x and y arrays, etc.)

If you have an array of points, interpolate 1D array would work best, so check the help for it.

 

Once you attach your code and some typical data, we can fix it for you in seconds.

0 Kudos
Message 2 of 12
(305 Views)

See if this can give you some ideas.

 

(Probably needs to be adapted based on xy datatype, and other details)

 

altenbach_0-1742410038065.png

 

Message 3 of 12
(289 Views)

Hey, thank you for the reply! We are trying to work with the cluster below. I have tried a couple things but no luck so far with my approach using property nodes. 

RobinWritesCode_1-1742819261003.png

 

 

 

0 Kudos
Message 4 of 12
(204 Views)

Hi Robin,

 


@RobinWritesCode wrote:

RobinWritesCode_1-1742819261003.png


What makes you think it is a good idea to label DBL floats as "String"?

 

Btw. you can easily convert your cluster of 1D array into the array of points used by Christian using one Unbundle and one Index&BundleClusterArray function. Then you can easily run Chistians code…

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 5 of 12
(192 Views)

Hey,

I wasn't the one who labeled it this. It was generated by labview. There is no benefit to naming it a different type then it is.

Below is the code snippet as to the origin of the data.

RobinWritesCode_0-1742825700421.png


Warmest regards,
Robin






0 Kudos
Message 6 of 12
(188 Views)

Hi Robin,

 


@RobinWritesCode wrote:

Below is the code snippet as to the origin of the data.

RobinWritesCode_0-1742825700421.png


Replace the Bundle node by Index&BundleClusterArray…

 


@RobinWritesCode wrote:

I wasn't the one who labeled it this. It was generated by labview. There is no benefit to naming it a different type then it is.


Because you started with string constants and didn't use BundleByName…

(You can also define the cluster with the Bundle node by wiring a typedefinition at the middle connector.)

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 7 of 12
(185 Views)
Solution
Accepted by topic author RobinWritesCode

The answer will be different if you want an approximation of the data as a whole or if you want piecewise interpolation between data points. If it's the former, you also need to know what form the relationship is in (i.e., is it linear, quadratic, exponential, etc.). If you want a more general fit but don't know the general form, you could use a spline fit.

 

So what does the data represent and what exactly are you trying to do with your interpolation?

 

(Also- you don't need the XY graph or property nodes to do this, you'd operate directly on the X and Y clusters- the thick yellow/gold wires going into the Bundle terminal).

Message 8 of 12
(168 Views)

Hey Bert,

Thank you for the reply I ended up using spline interpolation. Thank you for your help and everyone who took the time out of their day to give me advice.

Cheers,
Robin

0 Kudos
Message 9 of 12
(157 Views)

Spline has the advantage that you don't need a real model, but has a disadvantage if the points have noise. What does your data represent? If you have a mathematical model for the function, a nonlinear fit would be much more robust.

 

If you use spline interpolation, make sure to use low-level functions and calculate the interpolant only once. In any case, you should skip linearly interpolated plot style and calculate the interpolated data as separate plot.

Message 10 of 12
(130 Views)