blob: 01bf2decee38199dd36a6f6c6631095073ab024e (
plain)
1
2
3
4
5
6
7
8
|
//page 67
//Example 3.1
clc;
clear;
close;
disp('If V is a vector space, the identity transformation I defined by I*alpha = alpha is a linear transformation from V into V.');
disp('The zero transformation defined by 0*alpha = 0 is a linear transformation from V into V.');
//end
|