I have a couple of questions. what is sliced variable? please bring a clear example. How should use parfor when you have a for inside another for loop?
Thanks

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 30 Mai 2015

1 Stimme

2 Kommentare

Mohammad
Mohammad am 1 Jun. 2015
Bearbeitet: Mohammad am 1 Jun. 2015
Example - How do use sliced variable in
CE=c./(absXini);
for i=1:m1
CE(i,i)=0;
end
if you want to see errors, simply add 'par' before for and read errors in details.
The documentation there makes clear that the loop index may only appear once in the indexing expression; your code tries to use it twice.
Equivalent code that can be run with parfor, presuming a square 2D array
for i = 1 : size(CE,1)+1 : (m1-1)*size(CE,1)+m1
CE(i) = 0;
end
Other equivalent:
t = zeros(m1,1);
for i = 1 : m1
t(i) = 0; %redundant in the case of 0
end
CE(1:size(CE,1)+1:(m1-1)*size(CE,1)+m1) = t; %must be outside
And there is the vector version (not usable inside parfor)
CE(sub2ind(size(CE),1:m1,1:m1)) = 0;
Some of these can be simplified for the case where m1 is the same as size(CE,1) and the matrix is square, including
CE = CE - diag(diag(CE));

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-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