Question: Write a LabVIEW program that performs the following tasks: 1 . Generate 3 one - dimensional arrays from the given file input _ file.csv:a .

Write a LabVIEW program that performs the following tasks:
1. Generate 3 one-dimensional arrays from the given file input_file.csv:a. Using the number alphabet column, programmatically generate 2 one-dimensional by splitting each cell into its letter and number component. For example, the first 3 values are 1A,2B,3C, etc... Split this into a number array (1,2,3.) and an alphabet array (A, B, C.)b. Using the numbers given in the High/low sort column sort them by the alternating high low count. For example, the array 50,63,14,26,55,44 would sort with the highest number first (63) followed by the lowest number (14) and then the next highest number (55) and the next lowest number (26). Keep repeating this process until all the numbers in the given array are sorted in a one-dimensional array.
2. Generate 4 one-dimensional arrays of numbers/letters whose size is programmatically determined by the number of elements in the given file input_file.csv:d. An array that follows the recursive equation: Given the initial conditions A1=6, A2=4, and A3=2.e. An array of Random integers -20 to 50 that is evenly divisible by four. (i.e.,0,4,8.36,40)f. An array of strings that follows the patter: A1, B2, C3, A4, B5, C6, A7.g. An array that counts by 0.25 pattern: 0,0.25,0.50,0.75,1,1.25.3. Programmatically form 1 two-dimensional array from the above one-dimensional arrays (A-G) or as many as the program has generated. Display this two-dimensional array on the front panel in columnar format with headers (Alphabet, Number count from file, High/low sort, recursive, random divisible by 4, letter/number count, count).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!