How can i find a specific member of an array?

2 次查看(过去 30 天)
Hello everybody,
I have an array full of calculated values. I need to find a fraction of it where it meets a specific condition and plot it.
How can i do that?
  2 个评论
Yagmur Gencoglu
Yagmur Gencoglu 2018-2-27
Okay, so for example i have an array like
A = [5 5 5 2 3 4 5 6 7 8 7 6 5]
and i only want to run my script for the part the values increase, in this case i want to create the array, B = [2 3 4 5 6 7 8]

请先登录,再进行评论。

采纳的回答

Birdman
Birdman 2018-2-27
idx=find(diff(A)>0);
idx=[idx idx(end)+1];
B=A(idx)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Elementary Math 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by