Setting array indices to a vector of values

5 Ansichten (letzte 30 Tage)
David House
David House am 13 Dez. 2019
Kommentiert: David House am 17 Dez. 2019
I am coming from IDL, and in that language I can write something like this:
Temp(xVal, yVal) = VectorOfValues
Where 'Temp' is an array (say 600x300)
xVal = a vector of values that I am using as the x indices
yVal = a vector of values that I am using as the y indices
VectorOfValues = a vector of values the same length as xVal and yVal
Basically I am trying to set the certain indices indicated by xVal and yVal to the values that are in VectorOfValues. I get that I could make a for loop to go through each one but is there another way to do this?

Akzeptierte Antwort

the cyclist
the cyclist am 13 Dez. 2019
You can use sub2ind command to convert the subscripted indices (xVal,yVal) into a single linear index into the array.
  1 Kommentar
David House
David House am 17 Dez. 2019
Thanks, that worked. An extra line needed compared to IDL but works the same :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by