Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Scilab Help >> Graphics > axes_operations > square

square

set scales for isometric plot (change the size of the window) (function obsolete)

Syntax

square(xmin, ymin, xmax, ymax)

Arguments

xmin, xmax, ymin, ymax

four real values.

Description

This function is obsolete. It will be removed in Scilab 6.1.
Please replace square(a,b,c,d) with gcf().axes_size = [n n]; replot([a b c d]) where n is the size in pixels of the desired graphic square window. This replacement can be extended to any existing graphic window, not only the current one.

square is used to have isometric scales on the x and y axes. The requested values xmin, xmax, ymin, ymax are the boundaries of the graphics frame and square changes the graphics window dimensions in order to have an isometric plot. square sets the current graphics scales and can be used in conjunction with graphics routines which request the current graphics scale (for instance strf="x0z" in plot2d).

Examples

t=[0:0.1:2*%pi]';
plot2d(sin(t),cos(t))
clf()
square(-1,-1,1,1)
plot2d(sin(t),cos(t))

See also

  • isoview — tunes isometric rendering of graphical axes
  • xsetech — set the sub-window of a graphics window for plotting

History

VersionDescription
6.0 square() is tagged as obsolete. It will be removed from Scilab 6.1
Report an issue
<< sda axes_operations subplot >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:02:51 CET 2017