MATLAB: How can i assign values to variables

assign values to cells

Good Morning every one!! Today i have question too. i have one Matrix which Name is zeile and it includes 181 cell Array which are my 181 Parameters. In Addition i have one Matrix too.Its Name is dataArray and in this Matrix i have all values that belong to 181 Parameter.My question is how can i assign my values to These Parameters?

Best Answer

for it=1:181
zeile{it,1}=dataArray{1,it}
end