/ concept-collection / jupyterlite-numbl-kernel
Sign in
concept-collection / jupyterlite-numbl-kernel
jupyterlite-numbl-kernel / demo / content / @Poly / Poly.m
12 lines · 305 BCodeBlameHistory
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
12end
moveopenescclose