Problem 42770. Create formatted value string Cell array of a vector

This Challenge is to create a cell array that contains strings of vector components in a given format.

c=vector2formattedstringCA(fmt,v)

Example:

fmt='%.3f'; v=[-3.1416 -1.5708 0 1.5708  3.1416]
c={ '-3.142'    '-1.571'    '0.000'    '1.571'    '3.142'}

References:

I observed an intriguing function usage by LY Cao and googled it to Undocumented Matlab .

Solution Stats

75.0% Correct | 25.0% Incorrect
Last Solution submitted on Nov 03, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers26

Suggested Problems

More from this Author294

Community Treasure Hunt

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

Start Hunting!