Limit the values of the extreme elements of a vector.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ricardo Gutierrez
el 25 de Abr. de 2018
Comentada: Ricardo Gutierrez
el 26 de Abr. de 2018
Good Morning. I have this vector:
A=[ 0.0 0.66 1.37 2.17 3.13 3.81 4.54 5.44 6.04 6.66 ]
The elements that make up this vector will be changing progressively, that is, the previous number is smaller than the posterior one. The first element of this vector will always be 0.0 and the last vector element that does not exceed the value of 10.
I hope you help me.
Greetings and thanks.
3 comentarios
John D'Errico
el 25 de Abr. de 2018
We have no clue as to what the question is. But Karnak predicts the answer is 42.
Respuesta aceptada
Birdman
el 25 de Abr. de 2018
Maybe this will help:
low=0;up=10;n=9;
A=[0 sort(low+(up-low)*rand(1,n))]
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!