format long does not work in a function
8 ビュー (過去 30 日間)
古いコメントを表示
i have a function and i need the calculation in long format , i added :
origFormat = get(0, 'format');
format('long');
% -- Work in long format --
set(0,'format', origFormat);
at first line but it doesnt work
1 件のコメント
回答 (1 件)
Steven Lord
2018 年 11 月 27 日
The format function changes how double and single precision numbers are displayed. It has no impact on how computations are performed with those numbers, nor will it affect how sym expressions are displayed. To affect how sym expressions are displayed call vpa on the expressions.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!