Return a function handle that when applied to an input, it produces two outputs: the first is the same as the input, and the second is the element-wise square of the input.

Example:

f=f2f(); [a b]=f([1 2 3])

a = 1 2 3

b = 1 4 9

Solution Stats

233 Solutions

87 Solvers

Last Solution submitted on May 24, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...