diagonal matrix help, this is my code, not sure what to put for the D(i,j) part?
Afficher commentaires plus anciens
format long;
if (n~=4)&(n~=50)
'Input value must be 4 or 50'
return;
end
load(['data',num2str(n)],'A','b'); % load matrix A and b according to n
D=zeros(n,n); %Initialize D
%%%%%%%%%%%In the double-loop below, extract from A its diagonal part D,
for i=1:n
for j=1:n
if (i==j)
D(i,j) = ???;
end
end
end
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Operating on Diagonal Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!