From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2048/CH7/EX7.9/data01.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 2048/CH7/EX7.9/data01.sce (limited to '2048/CH7/EX7.9') diff --git a/2048/CH7/EX7.9/data01.sce b/2048/CH7/EX7.9/data01.sce new file mode 100755 index 000000000..c72c576d4 --- /dev/null +++ b/2048/CH7/EX7.9/data01.sce @@ -0,0 +1,27 @@ +// Left coprime factorization as discussed in Example 7.13 on page 295. +// 7.9 + +exec('rowjoin.sci',-1); +exec('makezero.sci',-1); +exec('colsplit.sci',-1); +exec('clcoef.sci',-1); +exec('polsize.sci',-1); +exec('seshft.sci',-1); +exec('indep.sci',-1); +exec('move_sci.sci',-1); +exec('t1calc.sci',-1); +exec('left_prm.sci',-1); + +D = [1 0 0 0 0 0 +0 1 0 1 0 0 +0 0 1 1 1 0]; +N = [ +1 0 0 +0 1 0 +0 0 1]; +dD = 1; +dN = 0; +[B,dB,A,dA] = left_prm(N,dN,D,dD) + + + -- cgit