Join two sprintf into one and show it on static field

1 vue (au cours des 30 derniers jours)
Soveatin Kuntur
Soveatin Kuntur le 13 Mai 2021
I want my program show something like this : Not stable. cycle of length 2 and between vector A and B
but its only show and vector B
elseif(out_firstprime==previoussecond)
fmt = ['Not stable cycle of length 2 between : [', repmat('%g, ', 1, numel(out_firstprime)-1), '%g]^T\n'];
%fprintf(fmt, out_firstprime)
set(handles.text3, 'string', sprintf(fmt, out_firstprime));
fmt = ['and [', repmat('%g, ', 1, numel(previousfirst)-1), '%g]^T\n'];
set(handles.text3, 'string', sprintf(fmt, previousfirst));
%fprintf(fmt, previousfirst)

Réponses (1)

Fangjun Jiang
Fangjun Jiang le 13 Mai 2021
The second set(handles.text3, 'string',...) will over-write the first one. You need to combine the string and run set() once.
Also, the format is overly complicated. Please provide an example of A and B, specify the desired string. There might be easier and better way to do it.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by