LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Variant of 1d array

Solved!
Go to solution

I met a situation two type of data array, dbl (converted data) and I16 (raw data).

I want to make a subvi for two types of data.

The coversion steps with array manipulation functions are very similar in each data type.

 

It doesn't seems to use a variant data type in array manipulation functions.

 

Do I have to make the subvi separately?

However, I have to consider the speed of conversion.

 

labmaster.

0 Kudos
Message 1 of 4
(2,804 Views)
Solution
Accepted by topic author labmaster

Hi labmaster,

 

what about using polymorphic vis? Make one for the DBL case and one for the I16 array, then create a polymorphic vi for both cases...

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 2 of 4
(2,795 Views)

At last, polymorphic vi was opened to a user.. I didn't know it.

That's what I wanted.

Can you feel some difference in speed comparing to that of single vi?

Anyway, thank you.

 

labmaster.

0 Kudos
Message 3 of 4
(2,775 Views)
There really isnt'a difference. The polymorphic VI is just a shell. The compiler will use whichever one is appropriate for the data type of the wire that's fed to it. If there's no exact match then the first one in the list is the one that will be used.
Message Edited by smercurio_fc on 05-31-2009 08:27 PM
0 Kudos
Message 4 of 4
(2,772 Views)