Code: function one() x=3; disp(x) end in the above code the output is 3 how can i get it as value of x is 3 please help
function one() x=3; disp(x) end
Follow Math Help Forum on Facebook and Google+
Something like this: Code: EDU>> x = 3; EDU>> fprintf('value of x is %i\n',x) value of x is 3 EDU>> Elbarto
EDU>> x = 3; EDU>> fprintf('value of x is %i\n',x) value of x is 3 EDU>>
View Tag Cloud