-->pwd ans = T:\ -->dir ans = 01Jun07.mws Scilab jan30.out 03may07.mws b1.eps lab1.m 07May07.sci eigen1.in lab1.pdf 14may07.mws evolution.data lab2.pdf 18jul07.mws fig2.m lab78 18jul07.sci fig3.m labprob1.doc.htm 27jun07.mws fire.sce labprob3.doc.htm 4elt.edgelist flexdock parallel6.eps 9jan.out foo.eps parallel6.eps.temp BlankNotebook.doc foo.eps.temp scilab.out Desktop foo.pdf section11-5.sci FSU09-011509.pdf fourier0.sci sep03 Maple9.5.ini fourier1.sci sep25.txt My Documents fourier2.sci sesson.txt Overview.pdf g251.edgelist sfb-j23.out Overview0.pdf g254.edgelist su09.sci PRSFULLROSTER_MAC2311.sp07.web_cohort5.csv ico1.edgelist PRSROSTER_MAC2311.sp07.web_cohort5.csv ico2.edgelist Presentation FSU_10-07.ppt iterate2d.in -->getf trans.sci !--error 241 File "trans.sci" does not exist or read access denied. -->cd Desktop ans = T:\Desktop -->getf trans.sci -->x = circle(n); !--error 4 Undefined variable: n -->x = circle(16); -->x=transA(x);square(-3,-3,3,3) !--error 4 Undefined variable: A at line 7 of function transA called by : x=transA(x);square(-3,-3,3,3) -->A=[2,1;1 3] A = 2. 1. 1. 3. -->x=transA(x);square(-3,-3,3,3) -->x=transA(makeUnit(x));square(-3,-3,3,3) -->x=transA(makeUnit(x));square(-3,-3,3,3) -->x=transA(makeUnit(x));square(-3,-3,3,3) -->x=transA(makeUnit(x));square(-3,-3,3,3) -->x=transA(makeUnit(x));square(-3,-3,3,3) -->A A = 2. 1. 1. 3. -->A(1,2) ans = 1. -->A(1,:) ans = 2. 1. -->A(:,2) ans = 1. 3. -->1:2:5 ans = 1. 3. 5. -->1:2:6 ans = 1. 3. 5. -->rref(A) ans = 1. 0. 0. 1. -->A A = 2. 1. 1. 3. -->A(1,:)=A(1,:)/2 A = 1. 0.5 1. 3. -->A(2,:)=A(2,:)-1*A(1,:) A = 1. 0.5 0. 2.5 -->A(2.:)=A(2,:)/2.5 !--error 2 Invalid factor. -->A(2,:)=A(2,:)/2.5 A = 1. 0.5 0. 1. -->A(1,:)=A(1,:)-0.5*A(1,:) A = 0.5 0.25 0. 1. -->A(1,:)=2*A(1,:) A = 1. 0.5 0. 1. -->A(1,:)=A(1,:)-0.5*A(2,:) A = 1. 0. 0. 1. -->1/3+sqrt(6) ans = 2.7828231 -->A(1,1) ans = 1. -->x=[0.1;0.3;-0.45] x = 0.1 0.3 - 0.45 -->norm(x) ans = 0.55 -->900:350:2825 ans = column 1 to 4 900. 1250. 1600. 1950. column 5 to 6 2300. 2650. -->900:350:2825 ans = 900. 1250. 1600. 1950. 2300. 2650. -->30:4:1010 ans = column 1 to 9 30. 34. 38. 42. 46. 50. 54. 58. 62. column 10 to 18 -->size(30:4:1010) ans = 1. 246. -->diary(0)