x = [12 54 21 36 27 19 16 78 65 43 38 91 5 8 3 18] how can i find elements of x (the values of x) such that xi<=30 and 30<=xi<=50
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
x = [12 54 21 36 27 19 16 78 65 43 38 91 5 8 3 18] how can i find elements of x (the values of x) such that xi<=30 and 30<=xi<=50
0 comentarios
Respuestas (2)
Jon
el 18 de Feb. de 2016
Editada: Jon
el 18 de Feb. de 2016
Look at the find() function. You can use logical operators like < , > , and = . Just try some things and see what happens.
2 comentarios
Torsten
el 19 de Feb. de 2016
Why not just testing it ?
Many big inventions would not have been possible without the curiosity of the people engaged in the subject.
Best wishes
Torsten.
Jan
el 19 de Feb. de 2016
A further hint: "30<=xi<=50" might be misleading, because Matlab processes such terms from right to left. Therefore you need to connect the two relations by an and():
30 <= x & x <= 50
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Coder 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!