How to add two different set values .

I ma having two different sets having the values in the following manner
A={4} {5}{3)
I want to add it together by having
B={12}.
I tried with the command B=sumA
But i am getting error.
could anyone please help me to get it

Answers (1)

madhan ravi
madhan ravi on 18 Apr 2019
Edited: madhan ravi on 18 Apr 2019
A={4,5,3};
B={12};
[A{:}]+[B{:}]

6 Comments

I want to have the result of A in B.
A contains three sets {4} {5} {3}
Now I need to all three sets together and store it in B.So the answer will be B={12}.
B={sum([A{:}])}
when i run the following code i am getting error stating
Unbalanced or unexpected parenthesis or bracket.
could you please help me on this.
B={sum([A{:}])} is valid.
when i run the following code
A={4} {5} {3}
B={sum([A{:}])}
I am getting error stating Unbalanced or unexpected parenthesis or
bracket with respect to the command line A={4} {5} {3}.Could you please help me on this.

Sign in to comment.

Categories

Tags

Asked:

on 18 Apr 2019

Commented:

on 18 Apr 2019

Community Treasure Hunt

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

Start Hunting!