Matrix storage and extraction inside a cell or a strucutre array.
Mostrar comentarios más antiguos
How do I store matrix and extract matrix from a cell or a structure by using a for loop??????
a=[1 2 3;4 5 6;7 8 9]
b=[11 12 13;14 15 16;7 8 19]
c=[121 212 213;14 15 16;27 28 29]
I created an cell array by following method
d=[{a},{b},{c}]
Suppose I have to retrive b from d. How do I retrive it????
Suppose a,b,c are images represented in matrix form. I need to know if these matrix can be stored in a structure or in a cell array by using a for loop and later retrived by a for loop.
1 comentario
Stephen23
el 3 de Mayo de 2020
Simpler:
d = {a,b,c};
"Suppose I have to retrive b from d. How do I retrive it????"
Basic indexing:
b = d{2};
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!