Calculates the total difference between two numbers

Answers (1)

Hi Adam,
I understand that you are trying to find the difference between two numbers. For this purpose, you can use absolute value function available in MATLAB.
Example:
a = 2;
b = 5;
Diff = abs(a-b);
Diff will have the value of 3.
Hope this helps!

Categories

Find more on MATLAB in Help Center and File Exchange

Asked:

on 6 Nov 2022

Edited:

on 9 Nov 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!