in the above code the output isCode:function one()
x=3;
disp(x)
end
3
how can i get it as
value of x is 3
please help
Printable View
in the above code the output isCode:function one()
x=3;
disp(x)
end
3
how can i get it as
value of x is 3
please help
Something like this:
ElbartoCode:EDU>> x = 3;
EDU>> fprintf('value of x is %i\n',x)
value of x is 3
EDU>>