Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - 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.
See the recommended documentation of this function

Scilab help >> Graphics > axes_operations > isoview

isoview

set scales for isometric plot (do not change the size of the window)

Calling Sequence

isoview(xmin,xmax,ymin,ymax)

Arguments

xmin,xmax,ymin,ymax

four real values

Description

This function is obsolete, use preferably the frameflag=4 plot2d option which enable window resizing.

isoview is used to have isometric scales on the x and y axes. It does not change the size of the graphics window. The rectangle xmin, xmax, ymin, ymax will be contained in the computed frame of the graphics window. isoview set 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()
isoview(-1,1,-1,1)
plot2d(sin(t),cos(t),1,"001")
xset("default")

plot2d(sin(t),cos(t),frameflag=4)

See Also

  • square — set scales for isometric plot (change the size of the window)
  • xsetech — set the sub-window of a graphics window for plotting

Authors

Steer S.

<< graduate axes_operations newaxes >>

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:
Thu May 12 11:44:25 CEST 2011