help-octave
[Top][All Lists]
Advanced

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

Re: Eliminating / lessen white-space in terminal window


From: RT
Subject: Re: Eliminating / lessen white-space in terminal window
Date: Tue, 18 Jun 2019 13:57:16 -0400

Thanks that was it.  I just typed in format short and that fixed the issue.


On Tue, Jun 18, 2019 at 1:46 PM Mike Miller <address@hidden> wrote:
On Tue, Jun 18, 2019 at 05:45:48 -0400, RT wrote:
> I'm using Octave 4.2.2 Ubuntu 18.04 How can I eliminate / lessen the
> white-space when viewing an array in the terminal?  see image below.

Is it possible that you are using format long and fixed_point_format?

    >> a = reshape (1:30, 5, 6)'
    a =

        1    2    3    4    5
        6    7    8    9   10
       11   12   13   14   15
       16   17   18   19   20
       21   22   23   24   25
       26   27   28   29   30

    >> format long
    >> fixed_point_format (true)
    >> a = reshape (1:30, 5, 6)'
    a =

                        1                    2                    3                    4                    5
                        6                    7                    8                    9                   10
                       11                   12                   13                   14                   15
                       16                   17                   18                   19                   20
                       21                   22                   23                   24                   25
                       26                   27                   28                   29                   30


--
mike


--
--
|======================================================|
|https://stillpointx.wordpress.com/research/modulated-plasma/                          
|======================================================|
"Knowledge may be the Key"
"But wisdom unlocks the door"
"Absolute Power demands absolutely nothing"

As the old maxim has it, you need find only one white crow to disprove the rule that all crows are black

"The bourgeois today burns as heretics and hangs as criminals those to whom he erects monuments tomorrow" ('Steppenwolf')

"There are two modes of being those in bliss and those seeking bliss,
may each step you take and each thought you make be made in a mindful and blissful state."
|======================================================|

reply via email to

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