How to check two unbalanced matrix?

1 view (last 30 days)
Matlab111
Matlab111 on 25 Jan 2015
Commented: Star Strider on 25 Jan 2015
For example:
X=[1;2;3;4;5];
Y=[2];
if this matched than i should get Z as matched value like this
Z=[2];

Answers (2)

Star Strider
Star Strider on 25 Jan 2015
I don’t understand what you are doing or what ‘matched’ means.
It would seem that the intersect function might be what you want:
Z = intersect(X,Y)
that would produce:
Z =
2
  4 Comments
Star Strider
Star Strider on 25 Jan 2015
True.
In that event, it would be necessary to use the R2014b version of round on both, or equivalently:
roundn = @(x,n) fix(x.*10.^n)./10.^n;
wnere x is the number (or matrix) to be rounded, and n the number of digits to be rounded to.

Sign in to comment.


Shoaibur Rahman
Shoaibur Rahman on 25 Jan 2015
Another way may be:
X=[1;2;3;4;5];
Y=[2];
Z = X(X==Y)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!