Define a family of functions
4 views (last 30 days)
Show older comments
Quang Huy Pham
on 4 Feb 2023
Edited: John D'Errico
on 4 Feb 2023
I want to define a family of functions f(r) := @(x,y) x^2+y^2-r^2 for each r>0.
I can define a sequence of functions f(1), ..., f(n) by creating a cell array of size n*1
f = cell{n}
for k=1:n
f{k} = @(x,y) x.^2+y.^2-n^2
end
However, it is not possible to create an infinite cell array indexed by the set of positive real numbers. I would like to know an alternative way to define family of functions.
0 Comments
Accepted Answer
John D'Errico
on 4 Feb 2023
Edited: John D'Errico
on 4 Feb 2023
DON'T DO IT THAT WAY. Instead, define ONE function. One function to rule them all. (Sorry. That last part just slipped out.)
Seriously. Define one function.
circfamily = @(x,y,r) x.^2 + y.^2 - r.^2;
Any single function in that family is now accessible simply as:
r = 5;
circ_5 = @(x,y) circfamily(x,y,r);
Or you might just do
circ_5 = @(x,y) circfamily(x,y,5);
In any case, we can now use that member of the family.
fimplicit(circ_5)
axis equal
We can even plot the entire family of such functions as a conic surface.
fimplicit3(circfamily,[-5,5,-5,5,0,5])
xlabel X
ylabel Y
zlabel R
grid on
box on
axis equal
There is no need to define the entire set of members of that family in advance. Anyway, you CANNOT explicitly define infinitely many functions, even if you wanted to do so. But essentially circfamily does exactly that implicitly, yielding infinitely many functions.
0 Comments
More Answers (1)
Walter Roberson
on 4 Feb 2023
If you could define a "family of functions" in MATLAB, what properties would you want such a thing to have? If there were class familyOfFunctions then what methods would you want the class to have?
For example if you define that particular family of functions without providing a specific value for r, then do you need to be able to integral2() the family over specific bounds and get out a family of solutions that you could then instantiate for a particular r to get back the corresponding numeric integral?... and if so then would it be acceptable to layer this all on top of the Symbolic Toolbox, or does it need to operate without the Symbolic Toolbox?
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!