photo

Elizabeth


Con actividad desde 2012

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB Answers

0 Preguntas
15 Respuestas

File Exchange

1 Archivo

CLASIFICACIÓN
3.050
of 300.715

REPUTACIÓN
20

CONTRIBUCIONES
0 Preguntas
15 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
5

CLASIFICACIÓN
13.881 of 21.048

REPUTACIÓN
20

EVALUACIÓN MEDIA
0.00

CONTRIBUCIONES
1 Archivo

DESCARGAS
1

ALL TIME DESCARGAS
200

CLASIFICACIÓN

of 170.301

CONTRIBUCIONES
0 Problemas
0 Soluciones

PUNTUACIÓN
0

NÚMERO DE INSIGNIAS
0

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • First Submission
  • 3 Month Streak
  • Knowledgeable Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Can't define functions in Matlab
Your function name must match the file name you save it under. Could this be the issue?

más de 13 años hace | 0

Respondida
Please help as I am struggling to solve this homework problem.
Don't know if this is any assistance to you but--Here is my code for the Gauss-Seidel iterative method: function [ X, Nt...

más de 13 años hace | 0

Respondida
How do we solve multiple ODEs to fit empirical observations by optimizing multiple constants?
Set each ODE equal to zero on the RHS and minimize the difference between the two terms on the LHS for each of your ODEs to be o...

más de 13 años hace | 0

Respondida
"nonlincon" part of the "fmincon" function in the optimization toolbox
What if you globalize the variables that you want to define in the nonlcon function. You would write global variable1.. global...

más de 13 años hace | 1

| aceptada

Respondida
Objective Orientated Programming in Matlab
# Engineering Optimization- Theory and Practice 4th Edition by Singiresu Rao # Optimization Concepts and its Applications in En...

más de 13 años hace | 0

Respondida
i want my fun value to be zero and also should satisfy the constraints,i uesd fmincon command
Hello sir, I obtained what I assume to be the correct result for your program: Local minimum found that satisfies the con...

más de 13 años hace | 0

Respondida
what changes i need to make for better answer (fmincon)
Hello sir, I obtained what I assume to be the correct result for your program: Local minimum found that satisfies the const...

más de 13 años hace | 0

Respondida
matlab error! "must return a column vector."
First of all, you initialize n_loss as a 3x1 column vector of zeros and then start to define it as a 3x3 matrix when you use the...

más de 13 años hace | 0

Respondida
Optimization algorithm in simulink
I don't know if this will be useful to you or not but there is a series of tutorials and files for mpc & simulink in the file ex...

más de 13 años hace | 0

Respondida
Defining a for loop
Matlab code t0= 0; %assign an initial time t0 tf= 100; %set final time tf for t=t0:tf {execute commands} end Is this...

más de 13 años hace | 0

Respondida
plotting a linear equation
Or: By all means, the solution method above will work. However, as your function increases in complexity, that command becomes ...

más de 13 años hace | 3

Respondida
How to set plot axes?
axis([0 1100 0 80000])

más de 13 años hace | 0

| aceptada

Respondida
Finding the maximum value in a loop
I am a little confused on the code you've provided. Perhaps if you were to clarify the problem statement and your objective mo...

más de 13 años hace | 0

Respondida
How to use previously calculated value in next iteration
Something that may be more efficient for your code is: Tfn(1)= 5 % initial value of Tfn for 2:700000 Tfn(n)=(1/32)*...

más de 13 años hace | 0

Respondida
finding unknown values in a column by using the indices (indexes) of known values.
Probably not as efficient as those above, but this is the simplest way I always tried to do it. j= find(row1==1.5); for ...

más de 13 años hace | 1