Mercurial > repos > public > sbplib
view +grid/evalOn.m @ 275:3ea2ae2a3d15 feature/beams
Improvments to eval on grids. Added function to extrac components of a vector gf.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 06 Sep 2016 17:28:11 +0200 |
parents | ac8e00883986 |
children | 30321dc180e1 |
line wrap: on
line source
% Takes a funciton and evaluates it on a grid to return a grid function in the % form of a (n*k)x1 vector, where n is the number of grid points and k is the % number of components of the function. % g -- Grid to evaluate on. % func -- Function to evaluate. May be a function handle or a constant. If % it is a vector value it has to be provided as a column vector, function gf = evalOn(g, func) if ~isa(func, 'function_handle') % We should have a constant. if size(func,2) ~= 1 error('grid:evalOn:VectorValuedWrongDim', 'A vector valued function must be given as a column vector') end gf = repmat(func,[g.N, 1]); return end % func should now be a function_handle % Get coordinates and convert to cell array for easier use as a parameter x = num2cell(g.points()); % Find the number of components x0 = x(1,:); f0 = func(x0{:}); k = length(f0); if size(f0,2) ~= 1 error('grid:evalOn:VectorValuedWrongDim', 'A vector valued function must be given as a column vector') end gf = zeros(g.N*k, 1); % keyboard for i = 1:g.N % (1 + (i-1)*k):(i*k) % func(x{i,:}) gf((1 + (i-1)*k):(i*k)) = func(x{i,:}); end end