Change name of subplot into 2 for

조회 수: 1 (최근 30일)
John Doe
John Doe 2020년 12월 6일
댓글: John Doe 2020년 12월 6일
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
Walter Roberson
Walter Roberson 2020년 12월 6일
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 ?
John Doe
John Doe 2020년 12월 6일
Hello Walter,
No objet 3 / task 2 was an exemple,
I do need, Fl-Pr','Ex-Su','Bic','Tri'
And i need to change with the task
I need it to do:
Fl-Pr / Task 1
Ex-Su / Task 1
Bic / Task 1
Tri / Task 1
Fl-Pr / Task 2
... to
Tri / Task 6
Displayed on the figure subplot title

댓글을 달려면 로그인하십시오.

채택된 답변

Setsuna Yuuki.
Setsuna Yuuki. 2020년 12월 6일
편집: Setsuna Yuuki. 2020년 12월 6일
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
Setsuna Yuuki.
Setsuna Yuuki. 2020년 12월 6일
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)')
John Doe
John Doe 2020년 12월 6일
Yeah, super Bastian, genius !!
Thanks a lot !

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by