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

1 visualizzazione (ultimi 30 giorni)
Dario Mateo Arango Angarita
Commentato: Rik il 5 Dic 2019
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.

Risposte (2)

Matt J
Matt J il 4 Dic 2019
  2 Commenti
Rik
Rik il 5 Dic 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 il 5 Dic 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.

Accedi per commentare.


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

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by