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

3 次查看(过去 30 天)
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

Michael Van de Graaff
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