dynamic array sizing
dynamic array sizing
(OP)
I would like to be able to size an array (vector) by means of a variable.
Essentially i have input data that i input into a number of vectors, the number of data points, ie rows changes each time, however i can't afford to have blank / zeros due to subsequent calculations.
I'd like to be able to set a variable "temp" = 10, in the case of 11 data points,
then size array1 and array2 to have rows 0-10.
finally display the newly sized vectors to allow data to be input.
Alternative i'd like to input the input data into two variables, then create a vector for each from them (Array1 + Array2)
then check i have the same number of rows in both.
thanks in advance
Essentially i have input data that i input into a number of vectors, the number of data points, ie rows changes each time, however i can't afford to have blank / zeros due to subsequent calculations.
I'd like to be able to set a variable "temp" = 10, in the case of 11 data points,
then size array1 and array2 to have rows 0-10.
finally display the newly sized vectors to allow data to be input.
Alternative i'd like to input the input data into two variables, then create a vector for each from them (Array1 + Array2)
then check i have the same number of rows in both.
thanks in advance
RE: dynamic array sizing
RE: dynamic array sizing
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
RE: dynamic array sizing
Either that or you can port you data directly into a nested excel (import->component->excel-> read the help file because this gets weird)and manipulate the data in a friendlier environment.
RE: dynamic array sizing