필터 지우기
필터 지우기

How to enable required buttons and plot linear fit from group of graphs

조회 수: 1 (최근 30일)
I have created an where i want to enable required buttons based on the input given. I have the maxium limit of the required buttons. My app tells about the mangoes quantity in the basket and the plot are made for the estimation of the ripeness of mangoes. Where i have known about the maximum number of mangoes in basket. What i required is, 1) if i change my input, i don't want the import excel buttons to be deleted instead those should be diabled. 2) After plotting the graphs, i want to make the linear fit and the squareroot fit to the plotted group of graphs. i have attached my app and the excel file for the plot.

채택된 답변

Yatharth
Yatharth 2024년 5월 27일
Hi Vahini,
From what I understood, you would like the import buttons to be disabled based on the input number.
You can use "app.Button.Enable" to toggle between the 'on' and 'off' states.
Here is an example code where I have 9 buttons, and based on the input number, the remaining buttons get disabled.
Function inputNumberFieldValueChanged(app, event)
value = app.inputNumberField.Value;
for i = 1:9
if i > value
app.(['Button_', num2str(i)]).Enable = 'off';
else
app.(['Button_', num2str(i)]).Enable = 'on';
end
end
end
For the second part of your question, You can use the "polyfit" function to plot the linear and square fit graph.
Note: Use the "hold" function to plot on the same graph/ UIAxes.
  댓글 수: 1
Vahini Polishetty
Vahini Polishetty 2024년 5월 27일
편집: Vahini Polishetty 2024년 5월 29일
Thank u so much for your answer Yatharth. Can we do similar to the tabs in Tabgroup too??

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by