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

1 vue (au cours des 30 derniers jours)
Dario Mateo Arango Angarita
Commenté : Rik le 5 Déc 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.

Réponses (2)

Matt J
Matt J le 4 Déc 2019
  2 commentaires
Rik
Rik le 5 Déc 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 le 5 Déc 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.

Connectez-vous pour commenter.


Matt J
Matt J le 4 Déc 2019
Modifié(e) : Matt J le 4 Déc 2019
You could also replace your plus() operations with sum() operations. Compare:
>> a=3; b=[];
>> a+b
ans =
[]
>> sum([a,b])
ans =
3

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by