spfun not working as expected with an anonymous function

1 vue (au cours des 30 derniers jours)
Kurt Ehlert
Kurt Ehlert le 3 Août 2018
Modifié(e) : Kurt Ehlert le 3 Août 2018
I'm trying to run the following
spfun((@(n) nchoosek(n, 2)), 4*speye(4,4))
I get the following error
Error using sparse
Vectors must be the same lengths.
Error in spfun (line 22)
f = sparse(i,j,feval(fun,x),m,n);
I expect to see a 4x4 matrix with sixes on the diagonal. What am I doing wrong?
EDIT I came up with a somewhat inelegant fix:
spfun((@(n_vec) arrayfun(@(n) nchoosek(n, 2), n_vec)), 4*speye(4,4))

Réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by