How to solve subtraction between two real numbers
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to know about Subtraction of two real numbers in Matlab
1 Kommentar
Antworten (1)
Sammit Jain
am 16 Dez. 2017
Pretty much what the comment says. You can subtract two numbers by doing the following:
a=100;
b=10;
res = a-b;
This is basically how you subtract two numbers in MATLAB.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!