One-to-one correspondence anonymous function
이전 댓글 표시
I was wondering if can make an injective (one-to-one correspondence) anonymous function to do this;
if the input was one member from P then function convert it to correspondence member in N, for example if input is x=10 out put will be y=5, x=105-->y=4 and ...
P=[10;100;105;700;943]
N=[5;8;4;11;20]
Thanks in advance, Arash
댓글 수: 1
Walter Roberson
2013년 2월 11일
are your x values always integer? if not there can be a problem.
채택된 답변
추가 답변 (1개)
Walter Roberson
2013년 2월 10일
@(x) N(ismember(x, P))
댓글 수: 2
Azzi Abdelmalek
2013년 2월 10일
Maybe it's
ismember(P,x)
Walter Roberson
2013년 2월 11일
Good point.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!