From: Giga Babs on
Hya
I create two things(hum I don't know how to call them!! may be cells !!) like this
donnees = cell(100)
dmo = zeros(100,100)

and when I try to fill the first table doing for exemple

donnees(1,5) = dmo(5,4)

I have this error message : ??? Conversion to cell from double is not possible.

Can anyone help me please !!!!

Thank you
From: us on
"Giga Babs" <bdmendy(a)gmail.com> wrote in message <hmg96t$qno$1(a)fred.mathworks.com>...
> Hya
> I create two things(hum I don't know how to call them!! may be cells !!) like this
> donnees = cell(100)
> dmo = zeros(100,100)
>
> and when I try to fill the first table doing for exemple
>
> donnees(1,5) = dmo(5,4)
>
> I have this error message : ??? Conversion to cell from double is not possible.
>
> Can anyone help me please !!!!
>
> Thank you

one of the solutions
- read up on CELLs in the docs...

c=cell(4,4);
d=ones(10,10);
c{1,1}=d(2,2);
% -or-
c(2,2)={d(3,3)}
%{
% c =
[1] [] [] []
[] [1] [] []
[] [] [] []
[] [] [] []
%}

us