Join two sprintf into one and show it on static field

6 visualizzazioni (ultimi 30 giorni)
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)

Risposte (1)

Fangjun Jiang
Fangjun Jiang il 13 Mag 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.

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by