Orion Poplawski wrote:
This affects the test_octave.sh script:
t = split("$options", "-"); t(1,:)="";
if $options in empty, which it normally is I believe.
The attached seems to work.
--
Orion Poplawski
Technical Manager 303-415-9701 x222
NWRA/CoRA Division
Octave 3.0.3 has some new behavior:
With 3.0.1:
>
> octave:3> t = ""
> t =
> octave:4> t(1,:) = ""
> t =
>
> With 3.0.3:
>
> octave:1> t=""
> t =
> octave:2> t(1,:) = ""
> error: A(idx) = []: index out of range
> error: assignment failed, or no method for `string = string'
> error: e