How can i find properties of value that coming from which array&cell?

1 回表示 (過去 30 日間)
BAHADIR Karba
BAHADIR Karba 2019 年 5 月 20 日
コメント済み: BAHADIR Karba 2019 年 5 月 22 日
IPRBacklash (1x44 cell) each cell {1x361 double},
MinPHASE=cellfun(@min,IPRBacklash); 1x44 double
min_Minvalue=min(MinPHASE); 0.063774312586618
MaxPHASE=cellfun(@max,IPRBacklash);1x44 double
min_Maxvalue=min(MaxPHASE); 0.063774312586618
MeanPhase=MaxPHASE-MinPHASE; 1x44 double
min_Meanvalue=min(MeanPhase); 0.007854317336731
I need to know automatically for example; min_Minvalue(0.063774312586618) coming from IPRBacklash{x}th cell x?
and min_Maxvalue (0.063774312586618) coming from IPRBacklash{x}th cell x?
also min_Meanvalue (0.007854317336731) coming from IPRBacklash{x}th cell x?
İf there is any missing about the question, please feel free to let me know.

採用された回答

madhan ravi
madhan ravi 2019 年 5 月 22 日
Use the second output of max() & min()
  7 件のコメント
madhan ravi
madhan ravi 2019 年 5 月 22 日
編集済み: madhan ravi 2019 年 5 月 22 日
Why is it so difficult to read the documentation ? [~,where]=min(MaxPhase_1)
BAHADIR Karba
BAHADIR Karba 2019 年 5 月 22 日
Dear, firstly i misunderstand you about doc. Before you replied me , i was reading . Sorry for tension:)
Regards;

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScope Variables and Generate Names についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by