Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

find values from two matrix and save into new variable

1 visualización (últimos 30 días)
FAISAL
FAISAL el 13 de Jul. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hi, I have a matlab question. Ok for example, I have 2 matrixes of 1x350 each, one gives the information of mix Frac, and the other one gives the information of Temp. For example,
Mix Frac 0.1 0.22 0.32 0.32 0.5 0.2 0.21 0.23 ...... Temp 300 1200 580 560 1200 1320 1500 1360 .....
What I want to do is to find the Mix Frac of a range of 0.19-0.21, and at the same time gives me the information of the Temp for that Mix Frac. So for example from the above two matrixes, it will create a new variable like below which only gives me the information of the temperature that in the range of the mixture fraction I asked….
Mix Frac 0.2 0.21 Temp 1320 1500
Thanks!

Respuestas (1)

Andrei Bobrov
Andrei Bobrov el 13 de Jul. de 2016
Editada: Andrei Bobrov el 13 de Jul. de 2016
Mix_Frac = Mix_Frac(:);
Temp = Temp(:);
t = Mix_Frac >= .19 & Mix_Frac <= .21;
out = [Mix_Frac(t), Temp(t)];
  1 comentario
FAISAL
FAISAL el 13 de Jul. de 2016
Ah thanks it works! but i forgot to state earlier, that i am running a loop (i=30), so if it run for the second and so on, it will overrite that value. how to keep the value in a way that for the second and so on, it will keep adding a new row? thanks!

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by