is it possible to substitute multiplication and division by addition and subtraction respectively in MATLAB?
2 views (last 30 days)
Show older comments
is it possible to substitute multiplication and division by addition and subtraction respectively in MATLAB?
1 Comment
Answers (1)
Steven Lord
on 18 Oct 2017
Of course. Instead of typing:
x = 3*5;
type:
x = 3+5;
If that's not what you meant, explain in more detail what you want to do and we can suggest whether or not it's possible.
4 Comments
Walter Roberson
on 22 Oct 2017
For example if this is a string manipulation question then it becomes a bit easier... provided that you do not have to deal with nested brackets.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!