User | Kudos |
---|---|
8 | |
6 | |
4 | |
4 | |
4 |
As of now Labview Mathscript can handle only 2 indices. for example:
Mathscript can execute the following
for i = 1:10
for j = 1:10
B(i,j) = i+j
end
end
but it can't do the following:
for i = 1:10
for j = 1:10
for k = 1:10
B(i,j,k) = i+j+k
end
end
end
I propose that Matscript should handle more than 2 indices.
The output then would be a 'n' dimensional array, where 'n' is the number of dummy indices.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.