Réponse apportée
Polt an object in uniform circular motion with Euler method
So you have made a good start, but you have errors in your derivatives ... why do you have t's in your derivative equations? The...

plus de 3 ans il y a | 0

Réponse apportée
How to solve a non-linear system of differential equations?
Your equations are linear in the derivatives, so you can form your equations as a matrix equation, then write a derivative funct...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
What do I need to change to get my Improved Euler's to match my Euler's?
Your current code is hard to read and debug because you have multiple variations of this expression scattered throughout your co...

plus de 3 ans il y a | 0

Réponse apportée
How do i use fminsearch to find the minimum or maximum of a function . x.^4-3.*x.*y+2.*y.^2
You need to have your function handle accept a vector and return a scalar. I.e., the x argument to the function handle is a vect...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Optimization of Rocket Launch
You have proposed work that IMO is way beyond what is achievable with your code. Constrained optimization of this sort is not tr...

plus de 3 ans il y a | 0

Réponse apportée
how to split a string (char value) with zero in front of it but showing the value in the matrix?
Two more ways: S = '0100'; S=='0' % logical result S-'0' % double result

plus de 3 ans il y a | 0

Réponse apportée
Manual MEX vs MEX by codegen
MATLAB does not publish the "rules" that Codegen uses to generate mex code. Because it is automated, I am not surprised that the...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Solve 2nd order ODE using Euler Method
You start your loop with i=1, but that means your x_d(i-1) will be x_d(0), an invalid index, hence the error. You need to set in...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Finding a single root of x^(3.6)=75
Make a function handle with the @ operator. E.g., fun = @(x) x^(3.6)-75; x0=3; z = fzero(fun,x0) Check z^3.6 Or you can r...

plus de 3 ans il y a | 2

Réponse apportée
Need to find dot product between two second order tensor
If you change the inner loop calculation to this: w(i,k) = dot(S(i,:),u(:,k)); then you would have dot products between the S ...

plus de 3 ans il y a | 0

Réponse apportée
linear combination of vector and permutation
Another way very similar to Torsten's method, limited to two desired values: n = 3; 2*(dec2bin(0:2^n-1)-'0')-1

plus de 3 ans il y a | 0

Réponse apportée
Use trapezoidal method to find the deflection at each measurement point.
Sounds like you want the cumtrapz( ) function. If the assignment requires you to use loops, just code up the formula found in th...

plus de 3 ans il y a | 0

Réponse apportée
How to convert decimals to Ascii characters?
Your table isn't ASCII encoding of characters, so you can't use simple functions such as double( ) etc. You are probably going t...

plus de 3 ans il y a | 1

Réponse apportée
Trapezoidal numerical integration using for loops
See the Trapezoidal Method section here for the fomula: https://www.mathworks.com/help/matlab/ref/trapz.html?searchHighlight=tr...

plus de 3 ans il y a | 0

Réponse apportée
a)Extract the data from the two columns into separate arrays named time and distance. b) Determine the velocity and acceleration of the rocket. Use a FOR loop or as many as d
Hints for using a difference method: Velocity = Position / Time Acceleration = Velocity / Time To get the delta values, just...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Change of position of velocity vectors and time interval between the change
Looks like an orbit problem. Around the Earth, I presume? You will not be using the Symbolic Toolbox for this assignment. You w...

presque 4 ans il y a | 1

Réponse apportée
Any comment to speed up the speed of caculation of symbolic loops having Legendre polynomials?
The Symbolic Toolbox is going to be slower than IEEE floating point ... that's just something you have to accept. And if you nee...

presque 4 ans il y a | 1

Réponse apportée
Formula for norm(x)
This question appears to be a follow-up to this post: https://www.mathworks.com/matlabcentral/answers/1809695-what-exactly-norm...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
what exactly norm(x) function do?
The equivalent function to norm( ) for a complex column vector x is sqrt(x' * x) where x' is the complex conjugate transpose. ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Why am I receiving Not enough input arguments?
The error seems pretty clear, you are calling func( ) without enough input arguments. The func( ) signature has six inputs: fun...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
I have some coupled nonlinear ordinary differential equations. Three equations have three 2nd order derivative coupled together. Can someone tell me how I can get the response
Another related approach is to isolate all the 2nd derivatives on the LHS and put everything else on the RHS. Then pick off the ...

presque 4 ans il y a | 0

Réponse apportée
how to use exp for this problem
You need to use the * operator to multiply in the denominator. E.g., w=exp(-(i-Un)^2/(2*sd^2)) If i is not a variable defined ...

presque 4 ans il y a | 0

Réponse apportée
Multiple Outputs of a function into a single vector
You could modify f( ) to return a vector. Or if you didn't want to modify f( ) you could create a helper function that does this...

presque 4 ans il y a | 2

Réponse apportée
dynamic matrix with changing variable name in for loop
Do not dynamically name variables. This is bad programming practice and will leave you with hard-to-use variables downstream in ...

presque 4 ans il y a | 0

Réponse apportée
ODE solver for restricted 3 body problem
In this line: dydt(2) = y(1) + 2 * dydt(3) - mu_p * ((y(1) + mu)/D1) - mu * ((y(1) - mu)/D2); you use dydt(3) before you set i...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Write a function file that computes the roots of a quadratic using the form for x+ and x−1 that are least susceptible to cancellation error.
Is this the type of formulae you are being asked to code? https://people.csail.mit.edu/bkph/articles/Quadratics.pdf https://st...

presque 4 ans il y a | 0

Réponse apportée
How to get the same number of char as number of decimals using num2str?
You might look into using the fix( ) function to isolate the fractional part of your number and then work with that directly.

presque 4 ans il y a | 0

Réponse apportée
matrix to struct do not match
You should really show us all of the actual code in question, not just a wordy description of the code. A better description and...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Assign elements in multidimensional struct to 2D array
You can use the vercat( ) function to force the comma-separated-list generated by C.pts to stack vertically: for ii=1:5, C(ii)....

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Singular Value Decomposition calculation of a matrix
By changing the order of the rows you have changed the order of operations inside svd( ). The two answers are essentially the sa...

presque 4 ans il y a | 1

| A accepté

Charger plus