view test/return.tst @ 18469:343718b2eee4 stable

axis.m: restore plotbox and data aspect ratios with 'axis normal' (bug #41581). Use manual plotboxaspectratio for 'axis equal' for Matlab compatibility. * axis.m: Use a manual plotboxaspectration of [5 4 4] for 'axis equal' for Matlab compatibility. For 'axis normal', first set an arbitrary plotboxaspectratio and then set plotboxaspectratio and dataaspectratio to "auto" such that a re-calculation is forced.
author Rik <rik@octave.org>
date Sat, 15 Feb 2014 20:16:27 -0800
parents d63878346099
children 4197fc428c7d
line wrap: on
line source

## Copyright (C) 2006-2013 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

%!function y = f ()
%!  y = 1;
%!  return;
%!  y = 2;
%!endfunction
%!
%!assert (f (), 1)

%!test
%! return;