This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
scientificComputing/regression/code/funcPlotter.m

5 lines
68 B
Matlab

function funcPlotter(func)
x = 0:0.1:10.0;
plot(x,func(x));
end