Filter löschen
Filter löschen

changing value in a 2d array

59 Ansichten (letzte 30 Tage)
charlie
charlie am 11 Jul. 2011
hi, thank you for your help.
I would like to know how to change values in a 2d array. For example, I have an 2d array A as of 1000x1000, of all zero values
I want to change value in position, 1x1, 1x100, 1x1000 to value 1.
do you know a quick way of doing this?

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 11 Jul. 2011
Please try the following:
A(1,1) = 1;
A(1,100) = 1;
A(1,1000) = 1;
HTH.
  1 Kommentar
charlie
charlie am 11 Jul. 2011
please see my response below, many thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Walter Roberson
Walter Roberson am 11 Jul. 2011
A(1,[1 100 1000]) = 1;
  1 Kommentar
charlie
charlie am 11 Jul. 2011
please see my response below, many thanks

Melden Sie sich an, um zu kommentieren.


charlie
charlie am 11 Jul. 2011
thank you guys, when everytime i run the above function, Matlab automatically loop through the entire 1000x1000 array. as the following:
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
I dont have any for loop in there, and this took a lot of time to compelete the entire program, do you have any ideas?
  4 Kommentare
bym
bym am 12 Jul. 2011
agree with Oleg, just didn't post soon enough!
charlie
charlie am 12 Jul. 2011
thank you very much, you guys are awsome

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by