Here is the MATLAB programming code for the Division of two numbers.
X=input(‘enter the first number ‘);
Y=input(‘enter the second number ‘);
Z=X/Y
It’s one of the simplest programs in the matlab programs. Let me know if correction is needed.
X=input(‘enter the first number ‘);
Y=input(‘enter the second number ‘);
Z=X/Y
It’s one of the simplest programs in the matlab programs. Let me know if correction is needed.