Re: [Plplot-devel] Problems with octave 3.0.3

2008-12-19 Thread Orion Poplawski
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

[Plplot-devel] Problems with octave 3.0.3

2008-12-18 Thread Orion Poplawski
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