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

1 次查看(过去 30 天)
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.

回答(2 个)

Matt J
Matt J 2019-12-4
  2 个评论
Rik
Rik 2019-12-5
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 2019-12-5
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.

请先登录,再进行评论。


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

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by