/
concept-collection
/
jupyterlite-numbl-kernel
Jump to
/
Appearance
Match my system
Paper
GitHub
Slate
Midnight
Terminal
Sign in
concept-collection
/
jupyterlite-numbl-kernel
Code
Commits
Issues
0
Pull requests
0
Actions
Branches
1
Tags
0
Site
2c57b11
Branches
main
jupyterlite-numbl-kernel
/
demo
/
content
/
@Poly
/
Poly.m
12 lines · 305 B
Copy
Copied
Blame
History
Raw
1
classdef Poly
2
% A
class
whose methods live
in
separate files
in
the @Poly/ folder.
3
properties
4
coeffs = []
5
end
6
methods
7
function obj = Poly(c)
8
if
nargin >
0
, obj.coeffs = c; end
9
end
10
y = evalAt(obj, x) % implemented
in
@Poly/evalAt.m
11
end
12
end
↑
↓
move
↵
open
esc
close