Borrar filtros
Borrar filtros

Index a percentage of a Matrix

3 visualizaciones (últimos 30 días)
Rob Jepp
Rob Jepp el 28 de Nov. de 2016
Editada: dpb el 30 de Nov. de 2016
I'm trying to extract the first 85% of one matrix and the last 15% of another to enable me to plot the combustion of non regular shaped solid fuels but haven't been able to so far.

Respuestas (1)

dpb
dpb el 28 de Nov. de 2016
85% of what--the indices, the values, ...? And, if it's is a matrix, what about shape? Matter where they came from or just overall, or...????
Anyway,
  1. %age of number of elements in matrix --> x(1:round(0.85*numel(x)))
  2. elements within %age of max in matrix--> x(x<=0.85*max(x(:)))
Other logical direction readily extensible from above.
  2 comentarios
dpb
dpb el 30 de Nov. de 2016
[OP Answer moved to Comment -- dpb]
Sorry they are single line matrices. Lengths will change depending of the fidelity that I require.
dpb
dpb el 30 de Nov. de 2016
Editada: dpb el 30 de Nov. de 2016
" depending of the fidelity that I require."
What does that mean? Still don't say what it is that you mean by percentage. Give an example (minimally sized) input and an expected output and the rule(z) by which you decide that's the right answer...otherwise, what's wrong with the above?

Iniciar sesión para comentar.

Categorías

Más información sobre Matrix Indexing 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!

Translated by