Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

GUI needed for following code

1 visualización (últimos 30 días)
Ajay Vignesh
Ajay Vignesh el 6 de Ag. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
When you run this code you get A, B, C values, Now I need the same thing in GUI format, Please help.
when we give X value & Y value in separate Input_X box & Input_Y box
after that pressing fit button i need output values A,B,C in output box.
%x=[-0.5 -0.4 -0.3 -0.2 -0.1 0 0.1 0.2 0.3 0.4 0.5]';
x=[-0.5 -0.4 -0.3 -0.2 -0.1]';
y=[-2.2026 -0.2981 -0.0403 -0.0055 -0.0007]';
fun = fittype(@(A, B, C, x)(A.*(exp(B.*x)-exp(-C.*x))));
[fitobject,gof,output] = fit(x, y, fun)
  1 comentario
Adam Danz
Adam Danz el 6 de Ag. de 2018
Here's a decent introduction on creating GUIs by using GUIDE(). What you're describing is a simple GUI and since GUIDE is also simple to learn, this task seems like a good one for a beginner. I'd be happy to help if you get stuck.

Respuestas (0)

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by