Is possible configure matlab to get a+[ ]=a?

1 view (last 30 days)
ask question
Greetings people.
I currently sent some codes for a software that I developed, and I did not take into account that some values ​​could be empty []. I get some empty values and i had to make a sum, but a + [] = []. It was a big mistake.
Is it possible to configure any option to get a + [] = a without using isEmpty or a command?
Thank you in advance.

Answers (2)

Matt J
Matt J on 4 Dec 2019
  2 Comments
Rik
Rik on 5 Dec 2019
Comment posted as answer by Dario Mateo Arango Angarita:
Thank you Matt.
Do you know if is possible edit the double class or plus function in MatLab?
Rik
Rik on 5 Dec 2019
You should be really careful with editing base components of internal Matlab functions, see this comment for an example why.
Did you try following the advice in the linked pages?
I would strongly suggest using the sum method instead.

Sign in to comment.


Matt J
Matt J on 4 Dec 2019
Edited: Matt J on 4 Dec 2019
You could also replace your plus() operations with sum() operations. Compare:
>> a=3; b=[];
>> a+b
ans =
[]
>> sum([a,b])
ans =
3

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!