How can I use pagefun?
Afficher commentaires plus anciens
function gputest()
% pagefun
function res = ttt_gpu(bb)
res = bb + 1;
end
b = gpuArray(repmat([1 2 ; 2 2; 4 3], 1, 1, 3));
pagefun(@ttt_gpu, b)
end
The line "pagefun(@ttt_gpu, b)" makes an error. Can't I use pagefun with user defined function?
Réponses (1)
Edric Ellis
le 27 Sep 2016
0 votes
Catégories
En savoir plus sur Time-Frequency Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!