Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

Three dimensional array - using Alias


Renewable Joe Jul 16, 2021 06:49 PM

I have an applicaiton where I am reading data from an IV tracer for PV applications.

A single IV trace is a pair of currents (I) and voltages (V) of 60 data points in length.

The system has 20 individual strings to measures.

So I wanted to place the values in a 3D array

Trace_data(2,60,20)

I also wanted to Alias the variables for easier recognition but I am not sure of the syntax.

For instance I wanted to current data (IV_I), voltage data (IV_V), and the Trace ID (Trace_id) aliaed.

Alias Trace_data(1,?,?) = IV_I

Alias Trace_data(2,?,?) = IV_V

Alias Trace_data(?,?,1) = Trace_id

I am just don't know the syntax to assign.

Any help would be appreciated.


nsw Jul 21, 2021 08:39 AM

CRBasic Help has a page dedicated to this : "Multi-Dimensional Arrays". Have a look at this and it should get you working.

Log in or register to post/reply in the forum.