Statistiques
RANG
2 959
of 295 467
RÉPUTATION
20
CONTRIBUTIONS
0 Questions
15 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
5
RANG
13 565 of 20 234
RÉPUTATION
20
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
1 Fichier
TÉLÉCHARGEMENTS
1
ALL TIME TÉLÉCHARGEMENTS
200
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Can't define functions in Matlab
Your function name must match the file name you save it under. Could this be the issue?
environ 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
"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...
plus de 12 ans il y a | 1
| A accepté
Objective Orientated Programming in Matlab
# Engineering Optimization- Theory and Practice 4th Edition by Singiresu Rao # Optimization Concepts and its Applications in En...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
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...
plus de 12 ans il y a | 0
plotting a linear equation
Or: By all means, the solution method above will work. However, as your function increases in complexity, that command becomes ...
plus de 12 ans il y a | 3
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...
plus de 12 ans il y a | 0
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)*...
plus de 12 ans il y a | 0
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 ...
plus de 12 ans il y a | 1
A soumis
pregress.m
A Matlab function pregress.m to carry out linear regression for an arbitrary order n polynomial.
plus de 12 ans il y a | 1 téléchargement |