5 lines
68 B
Matlab
5 lines
68 B
Matlab
function funcPlotter(func)
|
|
x = 0:0.1:10.0;
|
|
plot(x,func(x));
|
|
end
|