Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

find values from two matrix and save into new variable

3 views (last 30 days)
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!

Answers (1)

Andrei Bobrov
Andrei Bobrov on 13 Jul 2016
Edited: Andrei Bobrov on 13 Jul 2016
Mix_Frac = Mix_Frac(:);
Temp = Temp(:);
t = Mix_Frac >= .19 & Mix_Frac <= .21;
out = [Mix_Frac(t), Temp(t)];
  1 Comment
FAISAL
FAISAL on 13 Jul 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!

This question is closed.

Community Treasure Hunt

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

Start Hunting!