Join two sprintf into one and show it on static field

1 view (last 30 days)
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)

Answers (1)

Fangjun Jiang
Fangjun Jiang on 13 May 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.

Categories

Find more on Migrate GUIDE Apps 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!