help-octave
[Top][All Lists]
Advanced

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

Re: 2 Questions: list of variables & long lines


From: John C. Campbell
Subject: Re: 2 Questions: list of variables & long lines
Date: Tue, 08 Mar 94 13:42:39 CST

| I have two questions:

Well, I'll answer one of them...

| 2. When defining a variable, is there a line continuation character?  A
|    single back-slash does not work and a carriage return causes a parse
|    error also.  I would like this so that I can get decent looking 
|    printouts of my m-files.

Using ... allows continuation.

octave:1> A = [ 1 2 ...
> 3 4 ] 

A = 

  1  2  3  4

as oppossed to 

octave:1> A = [ 1 2 
> 3 4 ] 

A = 

  1  2 
  3  4



reply via email to

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