How do I use a plus and minus in a variable

Answers (1)

If we're simply working with numeric variables, something like this may work:
B = 5 + [4 -4]
B = 1×2
9 1
Or in cases where the +/- term is verbose, you might use a simple multiplication to avoid repeating the term:
B = 5 + [1 -1]*cosd(12+90) % or some other expression
B = 1×2
4.7921 5.2079

Categories

Tags

Asked:

on 6 Mar 2022

Edited:

on 19 Apr 2022

Community Treasure Hunt

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

Start Hunting!