iter=1;
for i=1:iter
try
fun1(3,8)
catch
fun2(4,6)
end
end
function z=fun1(a,b)
z=a.b
end
function z1=fun2(c,d)
z1=c+d;
end
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!