Respondida
Gauss-Elimination method
See the rank( ) function: https://www.mathworks.com/help/matlab/ref/rank.html?s_tid=doc_ta

más de 4 años hace | 1

Respondida
Looping num2str
x(i) references a single element of x. However, the expression [num2str(y(i)),'%'] generates multiple characters. In essence, ...

más de 4 años hace | 1

Respondida
Mean computaion in matlab
You can specify the dimension to use with the mean( ) function. E.g., maybe this is the computation you want: data = your 3D m...

más de 4 años hace | 0

Respondida
What is the mean?
B' is the complex conjugate transpose of B. If B is real, then it is equivalent to just the tranpose and the assignment simply ...

más de 4 años hace | 0

| aceptada

Respondida
How can I model equation of motion (2nd order ODE) when system matrices are in terms of state variables?
Yes you can have derivative functions that depend on state variables. This is quite common. E.g., define a 4x1 state vector y th...

más de 4 años hace | 0

Respondida
empty double matrix in case of nul value
Do you mean you want to do something like this: if( isempty(malicious) ) malicious = 0; end

más de 4 años hace | 0

Respondida
To allocate character array='2a'
'2a' is a two element character string. You can't assign two elements to a single element. I.e., you can't assign a 1x2 vector...

más de 4 años hace | 0

Respondida
How to get the desired quaternion representation from a rotation matrix?
As you already know, both q and -q represent the same rotation. Which sign to pick is entirely up to the underlying algorithm. ...

más de 4 años hace | 0

| aceptada

Respondida
Implementation of Runge Kutta Numerical Solution for system of ODE's
The main technical problem (other than your syntax not being MATLAB) is that you are trying to solve your four 1st order equatio...

más de 4 años hace | 0

| aceptada

Respondida
How to convert complex float to complex integer in MEX gateway function?
I would guess you can just use the appropriate data types. E.g., mxComplexInt32* Data1 = mxGetComplexInt32s(prhs[0]); mxComp...

más de 4 años hace | 0

| aceptada

Respondida
Can you help me with this loop?
Can you use num2str? Message = [num2str(TotalMinutes) ' minutes are equal to ' num2str(Hours) ' hours and ' num2str(Minutes) ' ...

más de 4 años hace | 0

Respondida
How to separate a string(1x1 cell) into a 1x4 cell
If the hex codes are always 8 characters, why can't you just pick off the characters you want? E.g., {result(1:8),result(10:17...

más de 4 años hace | 1

Respondida
how to generate a code for solving 2st order differential equations using improved runge kutta 4th order method
The posted code actually has a bug. Also it is almost set up properly for vector solutions, but not quite. Make these changes:...

más de 4 años hace | 0

Respondida
Computer crashed when calculating matrix (mixed with sparse and full) multiplication and summation
Remember that each element of the B*C result is simply the dot product of a row of B with a column of C. If that column of C ha...

más de 4 años hace | 0

| aceptada

Respondida
Fast vector reshaping/permutation
Don't do the permute( ) operation. Just use pagemtimes( ) downstream in your code with the appropriate 'transpose' option. Thi...

más de 4 años hace | 1

Respondida
Can someone explain this Loop?
Of the numbers 1 ... 10 that get produced by the randperm( ) call, only three of them are less than 4: 1, 2, 3. 1 will cause n...

más de 4 años hace | 0

| aceptada

Respondida
How to generate unique random integers between 1 to n (with no possibility of Sequence)
If 1:n is the only sequence you don't want, just use randperm(n) and reject the one case you don't want. I.e., if you get it the...

más de 4 años hace | 0

Respondida
How do solve four variables with one equation using Runge-kutta?
You have three state variables, namely v, lc, and z. But you only have code for updating v. You need code for updating lc and ...

más de 4 años hace | 2

| aceptada

Respondida
A code and plot a graph for a projectile motion of a ball
Your main problem is that you don't have enough state variables. You have these two equations: x'' = 0 y'' = -g That's two 2...

más de 4 años hace | 0

Respondida
Converting Struct field to array
Does this do what you want? MyMatrix = vertcat(MyStruct.Field);

más de 4 años hace | 14

| aceptada

Respondida
Trying to build a new nx4 array from an existing nx4 array using logical values
Assuming quatAB is a standard numeric matrix, use your logical variable for the first index and colon for the second index: m =...

más de 4 años hace | 0

Respondida
How do I combine a structure array into one structure
F = fieldnames(A); n = numel(F); C = arrayfun(@(i)vertcat(A.(F{i})),1:n,'uni',false); FC = [F';C]; B = struct(FC{:});

más de 4 años hace | 0

Respondida
Finding optimal value for x
You could try this function to get numeric values for local minimums: https://www.mathworks.com/help/matlab/ref/fminsearch.html...

más de 4 años hace | 0

Respondida
Using fprintf to save a matrix changes the order of my matrix
MATLAB stores 2D matrices in column order. That is, the numbers in your matrix are stored in memory in this order: 0, 1, 2, 3,...

más de 4 años hace | 0

Respondida
please help me to convert c code into matlab code for partial shading of solar panel using equilibration algorithm
In addition to what @Image Analyst has written, I would advise turning this into a function with p1, p2, p3 as input arguments a...

más de 4 años hace | 0

Respondida
Difference between using single quotes ('xyz') and double quotes ("xyz") in formatspec
In MATLAB, single quotes ' ' are used to create char type variables, and double quotes " " are used to create string type variab...

más de 4 años hace | 0

| aceptada

Respondida
Error in ode45 while doing numerical integration
The function handle you pass to ode45( ) needs to have a (t,y) signature. E.g., [t,y] = ode45(@(t,y) myode(t,gt,g), tspan, ic, ...

más de 4 años hace | 0

Respondida
How to multiply higher order matrices?
You may need to permute your arrays first to get your desired 2D slices in the first two dimensions. A = whatever B = whatever...

más de 4 años hace | 2

Respondida
Using matrix to index another matrix?
Does this do what you want: x = sub2ind(size(B),(1:size(A,1))',A(:,1),A(:,2),A(:,3)); Output = B(x);

más de 4 años hace | 0

| aceptada

Respondida
Equivalent of c++'s NULL or python' s None in MATLAB
This will probably depend on how these are used downstream in your code and whether you have arrays of them to deal with. If th...

más de 4 años hace | 1

Cargar más