navinsubramani / LabVIEW-Script-Language

Developing a platform to develop scripts, compile and execute it in the LabVIEW development or run time environment
MIT License
7 stars 2 forks source link

Array Input and Display bugs. #31

Open pranay001 opened 4 years ago

pranay001 commented 4 years ago

Bug with displaying array.

  1. In the VI "D:\TOOLS\LSL\source code\LSL components\data types\Variant to Datatype.vi", data conversion from variant to array types is not handled. please check if the below method of implementation is correct. image

"Array Constants"

  1. How to represent 1D and 2D array constants in the program.
navinsubramani commented 4 years ago

Yes,

The 1D array is represented as [1,2,3] or ["N","V"] or [True,False]

The 2D array is represented as [[1,2,3][1,3]] or similarly