Azzera filtri
Azzera filtri

how can i store all simulation results from gibbs sampling ?

2 visualizzazioni (ultimi 30 giorni)
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????

Risposta accettata

Muruganandham Subramanian
Muruganandham Subramanian il 29 Nov 2012
Check this:
for i=1:3
a{i}=i*ones(3);
end
b=cell2mat(a)
  2 Commenti
arkedia
arkedia il 2 Dic 2012
thanks for the answer , but the result will be [111222333;111222333;111222333] and the result i want is to be horizontal as [111;111;111;222;222;222;333;333;333] is it possible??

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Modeling in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by