octave-maintainers
[Top][All Lists]
Advanced

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

Re: Matlab-style empty output/input arguments support


From: Michael D Godfrey
Subject: Re: Matlab-style empty output/input arguments support
Date: Fri, 29 Jan 2010 14:14:38 -0800
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.7) Gecko/20100120 Fedora/3.0.1-1.fc12 Thunderbird/3.0.1

On 01/29/2010 12:56 PM, Jaroslav Hajek wrote:
Incidentally, is anyone able to check a recent Matlab to find out what
is displayed by the command
[a, ~, b] = deal (1, 2, 3) % without semicolon
?
Is the middle value displayed? If not, then I suppose we really should
simply omit the swallowed variables from the result. That's going to
be easy to implement as well.
  
matlab 2009R says:

>> [a, ~, b] = deal (1, 2, 3)

a =

     1


b =

     3

>>

reply via email to

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