A for loop type function for setting cell array intervals to zero
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Krispy Scripts
il 5 Ago 2016
Risposto: Star Strider
il 5 Ago 2016
The answered question here, but putting it a way that can be used for whatever amount of intervals and spk time cells.
0 Commenti
Risposta accettata
Star Strider
il 5 Ago 2016
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!