Omer N
Followers: 0 Following: 0
Statistiques
0 Questions
4 Réponses
RANG
5 130
of 295 712
RÉPUTATION
10
CONTRIBUTIONS
0 Questions
4 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
1
RANG
of 20 274
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 359
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
Changing Solver for Global optimization
Try looking into Multistart (Global Optimization Toolbox). Or if you run your own code, parfor.
presque 5 ans il y a | 1
| A accepté
to find value of unknown variable
You are trying to solve the equation symbolically and it takes a long time/fails. If you are okay with a numeric solution chan...
presque 5 ans il y a | 0
| A accepté
How would I enter the Differential Equation y''+100y=2sin(4t)
Try like so: syms y(t) simplify( dsolve(diff(y,2)+100*y==2*sin(4*t),t) ) ans = sin(4*t)/42 + C1*cos(10*t) - C2*sin(10*t)
plus de 5 ans il y a | 0
Calculating the difference between a vector and time
Try this: A = [1 1 2 3]; A-[0,A(1:end-1)] ans = 1 0 1 1
plus de 5 ans il y a | 0