How to get DataIndex array out of cursor_info?

9 ビュー (過去 30 日間)
Neo
Neo 2019 年 8 月 10 日
回答済み: jp HU 2024 年 1 月 27 日
cursor_info.DataIndex() returns two answers. However, I don't know how to get the array out of the struct?
Thanks,
H
Screen Shot 2019-08-09 at 8.48.18 PM.png

採用された回答

Maadhav Akula
Maadhav Akula 2019 年 8 月 12 日
You can get the array by using the following command :-
A = [cursor_info.DataIndex]
Hope this helps!

その他の回答 (1 件)

jp HU
jp HU 2024 年 1 月 27 日
A = [cursor_info.DataIndex];
for i=1:2
emg = abs(variablename(:,i));
for x=1:5
a=inde(2*x);
b=inde(2*x-1);
fea.ABS (i,x) = mean (emg(a:b));
end
end

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by