help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: continuation?


From: fgnievinski
Subject: Re: continuation?
Date: Mon, 24 Feb 2014 16:28:23 -0800 (PST)

Ah hah! Thanks guys!
   octave> x = [1 2 3 ...
   > 4 5 6]
looks much better!

I guess I'll just have to go through a lot of my code replacing
backspace continuations.

On Feb 12, 2014, at 8:20 AM, Vic Norton <vic@> wrote:

> What is the new continuation character? Please don't tell me that no
> command or assignment will be allowed to take up more than one line.
> 
> Octave 3.6.4
> octave> x = [1 2 3 \
>> 4 5 6]
> x =
> 
>   1   2   3   4   5   6
> 
> Octave 3.8.0
> octave-cli-3.8.0> x = [1 2 3 \
> warning: using continuation marker \ outside of double quoted strings is
> deprecated and will be removed in a future version of Octave
>> 4 5 6]
> x =
> 
>   1   2   3   4   5   6

You can ignore the warning:

warning('off', 'Octave:deprecated-syntax')




--
View this message in context: 
http://octave.1599824.n4.nabble.com/continuation-tp4661851p4662278.html
Sent from the Octave - General mailing list archive at Nabble.com.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]