I use EMX, I have a excel file (see picture 1) and the excel file is saved in the USB Stick.
I define 4 double/bool array as follow:
public static bool[] P_RW = new bool[1000];
public static double[] P_Min = new double[1000];
public static double[] P_Max = new double[1000];
public static double[] P_Voreinstellung= new double[1000];
How can I read the content of “column C(D,E,F)” one for one to array P_RW(P_Min,P_Max,P_Voreinstellung)?
I mean I want to initialize the 4 arrays with a excel file in the USB Stick.