필터 지우기
필터 지우기

A for loop type function for setting cell array intervals to zero

조회 수: 2 (최근 30일)
The answered question here, but putting it a way that can be used for whatever amount of intervals and spk time cells.

채택된 답변

Star Strider
Star Strider 2016년 8월 5일
As far as the first plot goes, creating a loop works:
figure(1)
plot([1:size(spk{1},2)], spk{1}, dep(1),spk{1}(dep(1)), 'r^')
hold on
for k1 = 2:size(spk,2)
plot([1:size(spk{k1},2)], spk{k1}, dep(k1),spk{k1}(dep(k1)), 'r^')
end
hold off
grid
Other than that, the code uses the data in your .mat files, and appears to me to be adaptable to their sizes.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by