How to create subplots of findchangepts function?

조회 수: 3 (최근 30일)
Mohamed Nedal
Mohamed Nedal 2019년 12월 24일
편집: Armin Iravani 2022년 1월 11일
Hello everyone,
I'm trying to plot several findchangepts plots as subplots in a single figure. I found it can't be done unfortunately.
Do you have any idea how to do so? any workaround?
Kindly check the attached .mat file. Here's what I need to plot.
subplot(3,1,1)
findchangepts(B,'MaxNumChanges',5);
subplot(3,1,2)
findchangepts(Bz,'MaxNumChanges',5);
subplot(3,1,3)
findchangepts(Dst,'MaxNumChanges',5);

채택된 답변

Sean de Wolski
Sean de Wolski 2019년 12월 24일
Take a look at the find change points live task which will generate the code for you for the plot you're looking for. Copy and paste it into subplot (or tiledlayout!)
  댓글 수: 6
Sean de Wolski
Sean de Wolski 2019년 12월 31일
Tiledlayout was added in 19b. The same logic would work with subplot.
Mohamed Nedal
Mohamed Nedal 2019년 12월 31일
I work on R2017b. I disabled these two lines t = tiledlayout(3,1); nexttile(t) And I wrote this line t = subplot (3,1,ii); Inside the for-loop, and it works :) Thank you!

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

추가 답변 (1개)

Armin Iravani
Armin Iravani 2022년 1월 11일
편집: Armin Iravani 2022년 1월 11일
Hello,
the ischange function does not have two types of methods which findchangepts has such as 'rms' and 'std'. How to use subplot and findchangepts with these two methods?
thank you....

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by