How do I vectorize this for loop?

1 次查看(过去 30 天)
Khadija Sidhpuri
Khadija Sidhpuri 2020-6-4
回答: Rik 2020-6-4
y_vec=zeros(100,10);
% y_vec is initially a zeros matrix. y is a vector of dimension 100 x 1 containing values between 1 and 10. For the value
% at ith row in vector y, y_vec(i,value)=1
for i=1:100
y_vec(i,y(i))=1;
end

回答(1 个)

Rik
Rik 2020-6-4
You will need to convert to linear indices with sub2ind.

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by