matlab errors as part..

icon
Related questions
Question

 

matlab errors as part.. 

 

Track down the mistake/s in the
accompanying
code, feature and
compose the right code.
MATLAB
n = 5;
A = eye(n):
for j=2,n
for i=1:j-1
A(i,j)=i/j;
A[j,i]=i/j;
End
end
Transcribed Image Text:Track down the mistake/s in the accompanying code, feature and compose the right code. MATLAB n = 5; A = eye(n): for j=2,n for i=1:j-1 A(i,j)=i/j; A[j,i]=i/j; End end
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Time complexity
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.