~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/programming/equal.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
1               Scilab Group               Scilab Function                1
2
 
NAME
3
 
   equal (=) - affectation, comparison equal sign
4
 
  
5
 
DESCRIPTION
6
 
   Equal sign is used to denote a value affectation to a variable.
7
 
  
8
 
   == denote equality comparison between two expressions and returns a
9
 
  boolean matrix.
10
 
  
11
 
EXAMPLES
12
 
 a=sin(3.2)
13
 
 [u,s]=schur(rand(3,3))
14
 
 [1:10]==4
15
 
 1~=2
16
 
SEE ALSO
17
 
   less, boolean   
18