blob: 1f81f0b8fe1208336cdb2e63b7579823e6c0eeb1 (
plain)
1
2
3
4
5
6
7
8
9
|
//page 98
//Example 3.20
clc;
clear;
close;
disp('Let V be the space of all polynomial functions from F into itself and t be any element of F.');
disp('If, Lt(p) = p(t), then Lt is a linear functional on V.');
disp('That is, for each t, evaluation at t is a linear functional on the space of polynomial functions.');
//end
|