find in for loop

1 次查看(过去 30 天)
Volkan Yangin
Volkan Yangin 2015-11-29
评论: Star Strider 2015-11-29
Hi everbody
I want to find the "Ne" values which are greater than the "tum_veriler_tamyukgucvolkan" values.
I have 1724 "Ne" values and i can't solve this problem with using simple methods. I must use for loop.
for i=1:1:numel(Ne);
greater_values=find(Ne(1,i)>tum_veriler_tamyukgucvolkan)
end
I have no idea where i have made false things.
Thanks.

回答(2 个)

Star Strider
Star Strider 2015-11-29
Guessing here since I can’t run your code, but saving the ‘greater_values’ as a cell array could work:
for i=1:1:numel(Ne);
greater_values{i} = find(Ne(1,i)>tum_veriler_tamyukgucvolkan);
end
  2 个评论
Volkan Yangin
Volkan Yangin 2015-11-29
thanks a lot for your answer Star Strider, your cell array solution is very helpful now. :-)
Star Strider
Star Strider 2015-11-29
My pleasure!

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2015-11-29
greater_values = Ne(Ne > tum_veriler_tamyukgucvolkan);
With no loop.
  1 个评论
Volkan Yangin
Volkan Yangin 2015-11-29
编辑:Volkan Yangin 2015-11-29
thanks for your answer Walter Roberson :-)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by