From: John D'Errico on
"Chris " <ridered300tr(a)hotmail.com> wrote in message <hl010i$jag$1(a)fred.mathworks.com>...
> I transformed my values into true and false like this:
> yr = (yr == 'char') %tests yr to see if values are 'char' class
>
> returned
>
> 0 0 0 0 0 0 0
>
> I deleted the first few using:
>
> yr(1) = []
> yr(1) = []
>
> but now I want to return my remaining values to double... How?

If you wish to make something into a double, I
would think to look at the function "double".

help double

John