Need help to make a for loop
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I got a K (5x5) matrix all zeros K1 (3x3) is associated with 1,2,3 K2 (3x3) is associated with 3,4,5
I Need to add K1 and K2 in a for loop to make a 5x5 matrix
4 Kommentare
Walter Roberson
am 6 Mär. 2017
If you have K1..k2..k3..till k100 then you rewrite your code so that you do not have those.
Stephen23
am 6 Mär. 2017
Read these:
And this quote from the MATLAB documentation: "A frequent use of the eval function is to create sets of variables such as A1, A2, ..., An, but this approach does not use the array processing power of MATLAB and is not recommended"
Then use indexing instead of dynamic variable names: indexing is simple, fast, efficient, and much less buggy.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!