Is it possible to improve performance of the Kron operator by making it a built in function rather than using m-file implementation?

10 views (last 30 days)
I use the kron operator as well as row-wise and column-wise Kronecker operators extensively in my work and in packages I write in Matlab. Given the importance of these operators it would be nice to have intrinsic functions rather than m-files implementations. For years I have relied on MEX file versions that I wrote which can be hundreds of times faster than the m-file versions, especially for sparse matrices. I would like you to consider providing intrincis versions of these operators. I've attached my MEX file versions which you are welcome to use.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 21 Oct 2019
The functionality requested is currently unavailable in MATLAB. This has been forwarded to our Developers as an enhancement request.
  2 Comments
Matt J
Matt J on 29 Apr 2020
Fabricius Somogyi's comment moved here:
Unfortunately I cannot find the MEX files that you attached in this thread. Could you kindly re-attach them? I am having similar issues with kron() being too slow for my purposes. Thanks!

Sign in to comment.

More Answers (1)

Matt J
Matt J on 9 Jan 2014
Edited: MathWorks Support Team on 19 Apr 2021
I wouldn't expect an intrinsic implementation to improve much. Most of the computational intensity of KRON is in all the multiplication operations required and those are well-accelerated through calls to BSXFUN.
Also, there are many operations involving Kronecker product matrices that are more efficiently done without computing the product explicitly with KRON. See here for a tool that facilitates this,

Categories

Find more on MATLAB Compiler in Help Center and File Exchange

Products


Release

R2013a

Community Treasure Hunt

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

Start Hunting!