How to solve subtraction between two real numbers
조회 수: 2 (최근 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
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!