Filter löschen
Filter löschen

Adding sprintf values using a loop

9 Ansichten (letzte 30 Tage)
Ramesh Bala
Ramesh Bala am 12 Jan. 2022
Bearbeitet: KALYAN ACHARJYA am 12 Jan. 2022
Dear group,
I'm trying to plot multiple subplots and adding names using loop.I tried to add a single name it works in a loop but adding multiple sprintf is snot changing the varibles ? What's the error in this?
Thanks in advance
figure
for k = 1 : 12
for a = 1:12
subplot(3,4,k);
Spec = ' A%d', 'S%d ';
caption = sprintf(Spec,k, a);
title(caption, 'FontSize', 12, 'HorizontalAlignment', 'center');
end
end

Akzeptierte Antwort

KALYAN ACHARJYA
KALYAN ACHARJYA am 12 Jan. 2022
Spec =['A%d ','S%d'];
  3 Kommentare
Stephen23
Stephen23 am 12 Jan. 2022
['A%d ','S%d']
is just a complex way of writing
'A%d S%d'
KALYAN ACHARJYA
KALYAN ACHARJYA am 12 Jan. 2022
Bearbeitet: KALYAN ACHARJYA am 12 Jan. 2022
yes sir Thanks @Stephen
@Ramesh Bala Are you looking for the following
Spec ='A%d S%d';
caption=sprintf(Spec,k,k)
if not, hope you noted about the nested loops iterations.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Produkte


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by