octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #59535] new Matlab plot commands: tiledlayout,


From: Hartmut
Subject: [Octave-bug-tracker] [bug #59535] new Matlab plot commands: tiledlayout, nexttile
Date: Tue, 24 Nov 2020 12:30:25 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0

URL:
  <https://savannah.gnu.org/bugs/?59535>

                 Summary: new Matlab plot commands: tiledlayout, nexttile
                 Project: GNU Octave
            Submitted by: hardy
            Submitted on: Tue 24 Nov 2020 05:30:23 PM UTC
                Category: Plotting
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
                 Release: 5.2.0
         Discussion Lock: Any
        Operating System: Any

    _______________________________________________________

Details:

I have just "discovered" two new Matlab plotting commands. They were
introduced to Matlab in R2019b.

They work as following:

tiledlayout ('flow')
nexttile
plot(1:10)
nexttile
plot(2:20)


This produces one plot window with two subplots. Similar (identical?) to what
you get with the following code both in Matab as in Octave:


subplot(2,1,1)
plot (1:10)
subplot(2,1,2)
plot(2:20)


Maybe we should at least add them to the missing command list in Octave, now.
(And maybe implement them at some time as well?)




    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?59535>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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