blob: 19bf9e11c41d9006b12db43773fdd79cc2c27594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//page 199
//Example 6.7
clc;
clear;
close;
disp('F is a field with D as differentiation operator on the space F[x].');
disp('n is an integer as n>0.');
disp('W is space of polynomialswith degree <= n.');
disp('so, W is invariant undet D.');
disp('And, D is degree decreasing.');
//end
|