필터 지우기
필터 지우기

How to get DataIndex array out of cursor_info?

조회 수: 8 (최근 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 CenterFile Exchange에서 Structures에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by