~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to examples/interface-tour/ex11c.sce

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
deff('[u,v,w]=myfct(x,y)','u=7+x,v=8+y,w=9+y')
 
2
//ex11c executes myfct with input variables x=5 and y=6
 
3
x=5;y=6;[u,v,w]=myfct(x,y);
 
4
[p,q,r]=ex11c(1,2,3,4,5,6);
 
5
if p<>u | q <> v | r <> w then pause,end
 
6