octave-maintainers
[Top][All Lists]
Advanced

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

Problem with continuation lines on octave 6 and 7


From: José Abílio Matos
Subject: Problem with continuation lines on octave 6 and 7
Date: Wed, 19 Feb 2020 14:59:41 +0000

I found a problem with continuation lines on octave 6 and 7:

>> c = ['1 2 3 ', ...
'4 5 6']
c =

1 2 3
4 5 6

while in octave 5 I get the expected:

>> c = ['1 2 3 ', ...
'4 5 6']
c = 1 2 3 4 5 6

Is this known? Should I fill a bug report?

Best regards,
-- 
José Matos





reply via email to

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