Réponse apportée
Using an Array as an input
The error message actually tells you exactly what to do. Use element-wise operator .^ instead of the matrix operator ^ Energy ...

environ 5 ans il y a | 1

Réponse apportée
Runge-Kutta 2
The + 4.*x1 should be - 4.*x1 in your derivative function. Also, using both X1 and x1 and X2 and x2, even though MATLAB is case...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
3D array of rotation matrices multiplied on 2D array of vectors
To answer your side question of how to transpose 2D pages of an array, you can use the permute function to swap the first two di...

environ 5 ans il y a | 0

Réponse apportée
Passing structs/objects to functions
MATLAB typically passes shared data copies of input arguments to functions. That means creating a separate mxArray header for t...

environ 5 ans il y a | 0

Réponse apportée
How can I solve a system of ODE's, in which the equations have a dependency on time, as well as the other ODEs?
Just code it up as it appears using a 3-element state vector, where the elements are defined as follows y(1) = x y(2) = y y(3...

environ 5 ans il y a | 0

Réponse apportée
How to improve the speed of large matrix addition?
If you are generating a new matrix C each time, then you are essentially doing two things: (1) Copying all the elements of A in...

environ 5 ans il y a | 0

Réponse apportée
Dealing with very small or very large numbers
I guess the obvious suggestion is to work in units of nanometers or maybe picometers instead of meters. Can you do that?

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to use if statement in function?
Add this code to the top of your function: if( N <= 0 ) error('N needs to be > 0') end That being said, your loop probab...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
How to build a quaternion from a normal vector?
If you have the Aerospace Toolbox, you could do the following n = 1x3 unit normal vector a = angle to rotate in radians v = 1...

environ 5 ans il y a | 0

Réponse apportée
Runge-Kutta 2
Normally one would plot the position, not the velocity. So I would have expected you to plot the "1" index of your solutions. ...

environ 5 ans il y a | 0

Réponse apportée
Double Variable Second order Differential Equation
Just write a derivative function using four states instead of two. The states will be x, y, dxdt, and dydt. The derivitives of...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
How can I divide each element of a vector by each of the elements of another vector in MATLAB?
Assuming a and b are both column vectors, you can use automatic array expansion by transposing one of them and using element-wis...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
"Array indicies must be positive integers" error
You can't have 0 or fractional indexing in MATLAB. Take this section of code for example: for t = 0:1:200 U(0,t) = ui; ...

environ 5 ans il y a | 0

Réponse apportée
what is the difference between the 2 codes ?
zeros([2,2]) passes one argument, a 2-element vector [2,2]. zeros(2,2) passes two arguments, the scalars 2 and 2. The result i...

environ 5 ans il y a | 0

Réponse apportée
Getting all Permutations of a 18+ integer vector
The number of different permutations of a vector of size n is n! (n factorial). So what you are attempting has these many possi...

environ 5 ans il y a | 0

Réponse apportée
Calculating a matrix with a specific form
You could rearrange the equations, isolate m(1), m(2), and m(3) and solve for them directly. E.g., rearrange the equations to f...

environ 5 ans il y a | 2

Réponse apportée
Combine logical arrays into one array
L = L1 | L2 | L3 | L4;

environ 5 ans il y a | 1

| A accepté

Réponse apportée
How to vectorise code involving matrix multiplications with vectors
See this link: https://www.mathworks.com/matlabcentral/answers/776812-how-to-vectorize-a-b-operation-on-slices-of-3d-matrices?s...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
What is the corect code for writing an error message when a user inputs an array instead of a scalar value?
Several ways to test for a scalar. E.g., if( ~isscalar(x) ) error('Input is not a scalar'); end or if( numel(x) ~= 1 )...

environ 5 ans il y a | 1

Réponse apportée
Calculating and and recording a vector during each iteration of a "while" loop.
E.g., using a counter to store all of your iteration data in a cell array and then post process this: k = 1; % the counter Rce...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Trying to separate Quaternion coefficients into array.
Use the double( ) function to convert to numeric array, then use regular indexing. E.g., try this function g = actfun(q) ...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
quat2eul is giving me a strange result
Maybe all you have to do is add 2*pi to all results that are less than -pi to get things how you want.

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Handling Inputs mex function
The prhs[ ] variables are of type pointer to mxArray ... you cannot use simple native C conversions with them. You must use som...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
How can I fix this error?
Delete the extra closing parentheses. I.e., delete the paren where the red underline is.

plus de 5 ans il y a | 0

Réponse apportée
Undefined function or variable t
Put this code in a separate file called Math.m % file Math.m function dxdt=Math(t,x1) % function name x=x1(1) y=x1(2) z=x1(...

plus de 5 ans il y a | 0

Réponse apportée
Generating a 4th order Runge-Kutta Integrator solver for the motion equation.
ode45( ) is not well suited to the orbit problem since the integration errors can systematically build up over time. You can tr...

plus de 5 ans il y a | 0

Réponse apportée
ODE45 function for 3 Variables
This y0 = [0;0;0;0]; and this zF = 0; means that your derivative function will evaluate to 0 exactly, so the solution is 0 e...

plus de 5 ans il y a | 0

Réponse apportée
Can anyone help?
Hint: Look at the results of this operation, and I think you can figure it out from there: x = [2;3;4]; % column vector y = 0:...

plus de 5 ans il y a | 0

Réponse apportée
How binary Random number generation upto n nodes ?
Here is how to get your stated desired output, but this is not random at all: r = dec2bin(0:(2^L-1)) - '0';

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Undefined function or variable 'bisection'.
From the error message, it looks like you are calling the function using the name "bisection", but the actual name of the functi...

plus de 5 ans il y a | 0

Charger plus