0
Someone can help me in this exercise Matlab. It’s Alinea B.
I did so but I could not understand why this is wrong. Could you explain to me why it is wrong?
function [i120, m120] = func11(mat)
i120 = 0;
m120 = 0;
for i = 1 : size(mat,1)
[ival,mval] = func10(mat(i,:),120)
i120 = i120 + 1;
m120 = m120 + 1;
end
From here on I can no longer finish the code, because I don’t see how I can implement the previous function.