summaryrefslogtreecommitdiff
path: root/3293/CH10/EX10.5/Ex10_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3293/CH10/EX10.5/Ex10_5.sce')
-rwxr-xr-x3293/CH10/EX10.5/Ex10_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3293/CH10/EX10.5/Ex10_5.sce b/3293/CH10/EX10.5/Ex10_5.sce
new file mode 100755
index 000000000..86576d316
--- /dev/null
+++ b/3293/CH10/EX10.5/Ex10_5.sce
@@ -0,0 +1,15 @@
+//page 365
+//Example 10.5
+clc;
+clear;
+close;
+n = round(rand() * 10 + 2);
+a = round(rand(1,n) * 10);
+b = round(rand(1,n) * 10);
+disp(n,'n = ');
+disp(a,'a = ');
+disp(b,'b = ');
+f = a * b';
+disp(f,'f(a,b) = ');
+disp('f is non-degenerate billinear form on R^n.');
+//end