Creating a fucning in spesific format

4 views (last 30 days)
I want to create a fucntion that display the input variable in long format.
How can I do it ?

Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 30 Aug 2022
You may consider using fprintf() by specifying the format specs, e.g.:
F = pi;
fprintf('F = %3.15f \n', F)
F = 3.141592653589793

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!