Change name of subplot into 2 for
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
John Doe
am 6 Dez. 2020
Kommentiert: John Doe
am 6 Dez. 2020
Hello everyone,
I may ask a silly question, need to change the name of 24 subplots.
I understood how to change the Objet1, but i don't know how to change the second part of the title, i'm stuck in the 2nd loop.
I want my title to be: Objet1/Task4 for exemple
Thanks everyone !
Here you have to code:
The main:
for mrkr=1:6
Tremor_functions.Timestamp(markers,mrkr,Fe)
for muscle=1:4
Tremor_functions.signal_processing(Debut,Fin,muscle,signal,Fe,mrkr,t);
The function that do the plots which is in "Tremor_functions.signal_processing" (you can jump at the bottom)
function signal_processing(Debut,Fin,muscle,signal,Fe,mrkr,t)
% Subplot temporal and frq
cellmuscle = {'Fl-Pr','Ex-Su','Bic','Tri'};
Muscle_Tache=strcat('Tache',num2str(mrkr),'Muscle',num2str(muscle));
Muscle_Tache=figure('Name',Muscle_Tache,'Position',[0 0 600 600]);
movegui(Muscle_Tache,'northwest');
subplot(2,1,1)
plot(t,EMG_filt,'r')
title(cellmuscle(muscle));
xlabel('Temps (s)')
ylabel('EMG (mV)')
subplot(2,1,2)
plot(f_DSP,EMG_filt_DSP,'b')
xlim([0 50])
title(cellmuscle(muscle));
%title('Muscle/Task')
xlabel('Fréquence (Hz)')
ylabel('DSP (mv2/Hz)')
Muscle_Task=strcat('Muscle',num2str(mrkr),'Task',num2str(muscle),'.bmp');
saveas(Muscle_Tache,Muscle_Task);
2 Kommentare
Walter Roberson
am 6 Dez. 2020
Could you confirm that you no longer want the title() to include, for example, 'Ex-Su', and would want that to be (for example) 'Objet3/Task2' instead ?
Akzeptierte Antwort
Setsuna Yuuki.
am 6 Dez. 2020
Bearbeitet: Setsuna Yuuki.
am 6 Dez. 2020
You can try change:
Muscle_Task=strcat('Muscle',num2str(mrkr),'Task',num2str(muscle),'.bmp');
to:
Muscle_Task=['Muscle' num2str(mrkr) 'Task' num2str(muscle)]
saveas(Muscle_Tache,Muscle_Task,'bmp');
3 Kommentare
Setsuna Yuuki.
am 6 Dez. 2020
i understand, try this:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
cellmuscle = ["Fl-Pr","Ex-Su","Bic","Tri"];
task = mrkr*ones(1,4);
nombre = [cellmuscle(muscle) '/Task' num2str(task(muscle))]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Muscle_Tache=strcat('Tache',num2str(mrkr),'Muscle',num2str(muscle));
Muscle_Tache=figure('Name',Muscle_Tache,'Position',[0 0 600 600]);
movegui(Muscle_Tache,'northwest');
subplot(2,1,1)
plot(t,EMG_filt,'r')
title(cellmuscle(muscle));
xlabel('Temps (s)')
ylabel('EMG (mV)')
subplot(2,1,2)
plot(f_DSP,EMG_filt_DSP,'b')
xlim([0 50])
title(nombre);
xlabel('Fréquence (Hz)')
ylabel('DSP (mv2/Hz)')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!