how can i store all simulation results from gibbs sampling ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
for example : for i=1:3 b=n*ones(3) end the result will be [3 3 3;3 3 3;3 3 3] BUT i want to save the hole result as [1 1 1;1 1 1;1 1 1;2 2 2;2 2 2;2 2 2;3 3 3;3 3 3;3 3 3] How can i do it????
0 commentaires
Réponse acceptée
Muruganandham Subramanian
le 29 Nov 2012
Check this:
for i=1:3
a{i}=i*ones(3);
end
b=cell2mat(a)
2 commentaires
Muruganandham Subramanian
le 6 Déc 2012
try this:
for i=1:3
a{i}=i*ones(3);
d(:,:,i)=a{i};
end
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Specialized Power Systems 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!