One-to-one correspondence anonymous function
Mostrar comentarios más antiguos
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 comentario
Walter Roberson
el 11 de Feb. de 2013
are your x values always integer? if not there can be a problem.
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 10 de Feb. de 2013
@(x) N(ismember(x, P))
2 comentarios
Azzi Abdelmalek
el 10 de Feb. de 2013
Maybe it's
ismember(P,x)
Walter Roberson
el 11 de Feb. de 2013
Good point.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!