How to solve subtraction between two real numbers
조회 수: 4 (최근 30일)
이전 댓글 표시
I want to know about Subtraction of two real numbers in Matlab
댓글 수: 1
답변 (1개)
Sammit Jain
2017년 12월 16일
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!