Please Help! I am struggling

조회 수: 4 (최근 30일)
howard jenkins
howard jenkins 2021년 4월 15일
답변: Thukiller 2021년 4월 15일
I have been trying to fix this code for 3 hours and I can't could someone please help me fix it?
function RollDicePlot()
fig = uifigure;
ax = uiaxes('Parent',fig,...
'Units','pixels',...
'Position', [104, 123, 300, 201]);
% Create a button
btn = uibutton(fig,'push',...
'Position',[420, 218, 100, 22],...
'ButtonPushedFcn', @(btn,event) diceButton(btn,ax));
end
% Create the function for the ButtonPushedFcn callback
function diceButton(btn,ax)
N1=1; N2=6;
p=randperm(N1:N2);
disp(p)
end

답변 (1개)

Thukiller
Thukiller 2021년 4월 15일
randperm(N1:N2)——>randperm(N2)
p = randperm(n)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by