if" function in matrix elements
1 view (last 30 days)
Show older comments
Jagadesh Rao
on 2 Nov 2014
Commented: Jagadesh Rao
on 2 Nov 2014
please help, i got quesion of matrix and if condition.
If G=any matrix with two columns.
if one of the numbers in G is equal or less than 1,
C=A+B
elseif if two of the numbers in G is equal or less than 1,
C=A-B.
How to create this condition?
please help. any help will be appreciated.
Thanks Jagadesh Rao Thalur
0 Comments
Accepted Answer
Roger Stafford
on 2 Nov 2014
s = sum(G(:)<=1);
if s == 1
C = A+B
elseif s == 2
C = A-B
else
??? What do you want to happen if either none or else more than two have this property?
end
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!