assign values for the list of numbers in the column from a look up lable
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JL
el 2 de Ag. de 2019
Comentada: JL
el 8 de Ag. de 2019
I have a table
x = [10; 20; 30; 40; 50;]; %look up table
and i have y =
1
4
5
and I want to assign 1=10; 4=40; 5=50;
and so if i have new values of y =
2
5
then I assign 2=20; 5=50;
0 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Ag. de 2019
3 comentarios
Walter Roberson
el 2 de Ag. de 2019
[y, x(y)]
Provided that x and y are both column vectors like you show in your question.
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!