summaryrefslogtreecommitdiff
path: root/70/CH2/EX2.3.4/2_3_4.sci
blob: b066bde99da7edcde264bd0b9886cc4e36453f5c (plain)
1
2
3
4
5
6
7
8
9
//page 93
clear;
close;
clc;
disp('The columns of the nxn identity matrix are independent.')
n=input('Enter n:');
I=eye(n,n);
disp(I,'I=');
//end