-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidpoint_rule.m
80 lines (61 loc) · 2.17 KB
/
midpoint_rule.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
% Midpoint quadrature rule class
%
% q = midpoint_rule(n) creates object q representing a midpoint quadrature
% rule on [0,1] with n points.
%
% x = q.points() returns vector x containing the quadrature points.
%
% w = q.weights() returns vector w containing the corresponding quadrature
% weights.
%
% Example:
%
% sum(w.*f(x)) approximates the integral of f over the interval [0,1].
%
% See also: rectangle_rule_right, rectangle_rule_left.
%
% Stuart C. Hawkins - 23 August 2021
% Copyright 2019-2022 Stuart C. Hawkins
%
% This file is part of TMATROM3
%
% TMATROM3 is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% TMATROM3 is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with TMATROM3. If not, see <http://www.gnu.org/licenses/>.
classdef midpoint_rule < rule
properties
end
methods
%-----------------------------------------
% constructor
%-----------------------------------------
function self = midpoint_rule(n)
% call parent constructor
self = self@rule(n);
end
%-----------------------------------------
% return points
%-----------------------------------------
function val = points(self)
% split [0,1] into n intervals and the points are the midpoints
% of those intervals
val = (0.5+(0:self.n-1).')/self.n;
end
%-----------------------------------------
% return quadrature weights
%-----------------------------------------
function val = weights(self)
% return the weights
val = ones(n,1)/n;
end
end
end