Effacer les filtres
Effacer les filtres

how to create a customized array and running a counter through it?

4 vues (au cours des 30 derniers jours)
Sandeep Kumar
Sandeep Kumar le 25 Fév 2016
Commenté : Stephen23 le 25 Fév 2016
hello every one , i want to create an array with size A[128x4], which has A[1] consisting of only 128 elements, A[2] consisting of 32 elements, A[3] consisting of 8 elements, A[4] consisting of 2 elements, i want to run a (m = 1:256) bit counter through my array in a way that after filling my 128 elements in A[1] it goes onto fill the A[2] ..... i want to collect my output at from second element from A[4] array, it will be even better if the array shift after receiving a incremental feedback((i.e receiving on feedback as '2' the counter goes to A[2] array, receiving feedback as '3' the counter goes to the A[3] array to it an so on)). kindly guide me with it matlab, thank you.

Réponse acceptée

Stephen23
Stephen23 le 25 Fév 2016
Store your arrays in a cell array. Loop over the cell array:
A = cell(1,5);
for k = 1:numel(A)
A{k} % access the kth array.
... your code
end
  10 commentaires
Sandeep Kumar
Sandeep Kumar le 25 Fév 2016
oh thanku so much sir, that is even easier to use.
Stephen23
Stephen23 le 25 Fév 2016
My Pleasure! You can also accept the answer the best resolves your question.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by