cellfun with Frobenius norm

Hi all,
I'd like to obtain Frobenius norm for each element in a cell, I wrote this:
a1 = (1:6)';
a2 = (2:7)';
a3 = (3:8)';
a = {a1 a2 a3};
nm.a = cellfun(@norm, a);
However, if I want a Frobenius norm, I'll need norm(x, 'fro'), how can I add 'fro' in this case in cellfun?
Thank you!

 Accepted Answer

Use an anonymous function:
nm.a = cellfun(@(m) norm(m, 'fro'), a)

3 Comments

So is there no way to write it in a compact form?
Looks compact enough to me. If it bothers you that much, create an m file called frobeniusnorm.m with the content:
function m = frobeniusnorm(x)
m = norm(x, 'fro');
end
You can then write your cellfun more compactly:
nm.a = cellfun(@frobeniusnorm, a);
Many thanks, I was just wondering is there a possibility to write without an anonymous function.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Asked:

on 3 Mar 2017

Commented:

on 3 Mar 2017

Community Treasure Hunt

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

Start Hunting!