Effacer les filtres
Effacer les filtres

Why Phase 4 of MATLAB App designer is not giving the ouput values. Kindly help me i shared the matlab function file and App designer file

26 vues (au cours des 30 derniers jours)
Why Phase 4 of MATLAB App designer is not giving the ouput values. Kindly help me i shared the matlab function file and App designer file .
  1 commentaire
Matlab Pro
Matlab Pro le 24 Juin 2024 à 9:25
Well, You can be a little more descriptive about what to do with this Big GUI..
What button did you press?
What happened (error/ etc)
What did not happen (and you expected it to happen..)

Connectez-vous pour commenter.

Réponses (1)

Matlab Pro
Matlab Pro le 24 Juin 2024 à 9:30
When pressing the "GO" button- the next error is raised:
[t, y] = ode45(@(t, y) ode_LR(t, y, Kf_L, Kb), timespan, initial_conditions);
Error using odearguments
The last entry in tspan must be different from the first entry.
Error in ode45 (line 104)
odearguments(odeIsFuncHandle,odeTreatAsMFile, solver_name, ode, tspan, y0, options, varargin);
This error is rlating to the "timespan" argument.
A small fix (altough you have to consider this) is just changing the last entry of "timespan" (vs the 1st entry of "timespan")
The next lines do not create the error...
timespan(end) = timespan(1) + 1;
[t, y] = ode45(@(t, y) ode_LR(t, y, Kf_L, Kb), timespan, initial_conditions);

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Tags

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by