Can someone help me with this. I try my 101% but i always fail with GUI.

조회 수: 1 (최근 30일)
Mateja Sima
Mateja Sima 2022년 6월 3일
댓글: John D'Errico 2022년 6월 3일
Create program code in Matlab that launches a graphical user interface through which the user will be able to add, subtract, multiply and divide the matrix and scalar through the input fields of the entered matrix and scalar, and select one of the four buttons. Provide must prove. Print the result of the operation in the field on the graphical interface.
  댓글 수: 2
Sam Chak
Sam Chak 2022년 6월 3일
Can you at least show/share your 101% MATLAB code? It makes life easier to troubleshoot and modify the existing code.
John D'Errico
John D'Errico 2022년 6월 3일
Please learn to use comments, instead of posting new aswers every time you make a comment.

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

답변 (2개)

Mateja Sima
Mateja Sima 2022년 6월 3일
while true
k = input ('Enter 1 to enter your own matrix, otherwise press 2:', 's');
k = str2double (k);
if ~ isnan (k)
break;
else
disp ('Only number counts !!!');
end
end
if k == 1
a = input ('Enter scalar value =');
A = input ('Enter production matrix =');
multiplication = A * a
division = A / a
addition = A + a
subtraction = A-a
elseif k == 2
a = input ('Enter scalar value =');
n = input ('Enter value for number of species =');
m = input ('Enter value for number of columns =');
A = rand (n, m);
multiplication = A * a
division = A / a
addition = A + a
subtraction = A-a
else
fprintf ('Re-enter parameter k. \ n')
end
  댓글 수: 1
Michael Van de Graaff
Michael Van de Graaff 2022년 6월 3일
You can use the code tool to format code
% the first button in the code portion of the toolbar for the box i'm
% writing in write now

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


Michael Van de Graaff
Michael Van de Graaff 2022년 6월 3일
the code you've provided (which you should put in youre question rather than your comment/answer, you can edit the question and add it any time) doesn't make a Graphical User Interface (GUI),
You should look up the App Designer, it's a tool to make GUIs. The app may have text boxes for you to input data, and a CallBack which is a function inside the app which then does things, like multply matrices.
Do not expect someone to walk you through each step.
to make a basic GUI that has a single edit field for a scalar input, see https://www.mathworks.com/help/matlab/ref/uieditfield.html

카테고리

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