Use a nx2 matrix to indicate desired positions on another matrix

2 ビュー (過去 30 日間)
Raldi
Raldi 2012 年 10 月 31 日
Hello everyone,
I have a quick question, how can i use the matrix lets say
pos = [1 2; 3 3];
as a guide to change the values of another matrix lets say
val = zeros(3);
avoiding for loops. What i want is something like var(pos(1,end,:)) = "some value"

採用された回答

Matt J
Matt J 2012 年 10 月 31 日
var(sub2ind(size(var), pos(:,1), pos(:,2))) = newvalue;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by