Issue with kruskalwallis() function not working in Live Script after installing MATLAB R2025a

조회 수: 9 (최근 30일)
Hi everyone,
After installing MATLAB version R2025a, I noticed that some functions freeze and do not run at all in Live Script. For example, the function kruskalwallis() completely freezes when executed within a Live Script, but it works normally in the Command Window and regular scripts.
Has anyone else experienced this issue? Is there any known solution or workaround?
Thank you in advance for your help!
  댓글 수: 3
Geovane Gomes
Geovane Gomes 2025년 6월 3일
편집: Geovane Gomes 2025년 6월 3일
On R2024 it runs well. It seems that this problem is specific to R2025a. Maybe I need to revert back to R2024b until this issue is resolved.

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

답변 (2개)

Hitesh
Hitesh 2025년 6월 4일
편집: Hitesh 2025년 6월 4일
Hi Geovane Gomes,
I too encountered the similar issue. The workaround that worked for me was to disable the plot output. Kindly use the following command to disable the plot while calling the "kruskalwallis" function. However using this command will execute the "kruskallwallis" with ANOVA table and stats in MATLAB R2025a in live Script but it will not generate or display associated plot.
[p,tbl,stats] = kruskalwallis(x,[],'off')

Peggy Jones
Peggy Jones 2025년 10월 22일 18:57
I was teaching anova1 using the R2025a version yesterday and it hangs up in live script. Here's what I tested so far:
Laptop with MATLAB installed: anova1 runs in the command window and in script, but not live script.
Computer lab classroom podium computer: anova1 ran in the command window, had figures in the script output if I hit the stop button, and would not run in live script.
MATLAB online: Same as the podium computer.
Here is my test code:
clear
clc
x=[1,10,20;2,11,22;3,12,22] %dummy matrix to debug code
p=anova1(x) %simplest possible version of anova1 syntax.
I tried the 'off' solution suggested by hitesh and it worked.
clear
clc
x=[1,10,20;2,11,21;3,12,22]
[p,tbl,stats] = anova1(x,[],'off')
It puts the Anova table in the output window where I expected to see it.
Peggy Jones
Associate Professor of Mechanical Engineering
Saginaw Valley State University

카테고리

Help CenterFile Exchange에서 Analysis of Variance and Covariance에 대해 자세히 알아보기

제품


릴리스

R2025a

Community Treasure Hunt

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

Start Hunting!

Translated by