problem to use compose

4 vues (au cours des 30 derniers jours)
shamal
shamal le 29 Mai 2025
load('matlab_bb.mat')
Error using load
Unable to find file or directory 'matlab_bb.mat'.
0.7937
0.7937
0.7937
0.7937
0.7937
bbb=char(compose("%% %2.2f",bb));
'% 0.00'
'% 0.00'
'% 0.00'
'% 0.00'
'% 0.00'
'% 0.00'
'% 0.00'
'% 0.00'
why i see all zero?

Réponse acceptée

the cyclist
the cyclist le 29 Mai 2025
Modifié(e) : the cyclist le 29 Mai 2025
It's because your values are actually 0.7937 * 1.e-5.
Try ..
load('matlab_bb.mat')
bbb=char(compose("%% %9.9f",bb));

Plus de réponses (0)

Catégories

En savoir plus sur System Composer dans Help Center et File Exchange

Produits


Version

R2025a

Community Treasure Hunt

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

Start Hunting!

Translated by