Info

此问题已关闭。 请重新打开它进行编辑或回答。

find values from two matrix and save into new variable

3 次查看(过去 30 天)
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!

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2016-7-13
编辑:Andrei Bobrov 2016-7-13
Mix_Frac = Mix_Frac(:);
Temp = Temp(:);
t = Mix_Frac >= .19 & Mix_Frac <= .21;
out = [Mix_Frac(t), Temp(t)];
  1 个评论
FAISAL
FAISAL 2016-7-13
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!

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by