Réponse apportée
generate random number with total sum is 10
Not sure from your wording if you want the row sums to be 1 or 10. If it is 1, then r = rand(6,1); r(:,2) = 1 - r(:,1); Modif...

plus de 5 ans il y a | 0

Réponse apportée
when does changing variable's value affects its structure address?
In addition to what Walter has written, I would point out that all of the rules for variable creation, assignment, and sharing h...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Replace the numbers in an array
A(~isnan(A)) = B;

plus de 5 ans il y a | 1

Réponse apportée
Vector ODE using forward Euler method
Also your main code should look something like this: g = 9.8; mu = 0.5; [t,y]=ode45(@(t,y)rhs_1(t,y,g,mu),[0 100],[0.1; 0]); ...

plus de 5 ans il y a | 1

Réponse apportée
unique function return value of duplicate vector entry
Why can't you just use ind1 and ind2? E.g., V1_1 = V1_1(ind1); V2_1 = V2_1(ind1); V1_2 = V1_2(ind2); V2_2 = V2_2(ind2);

plus de 5 ans il y a | 0

Réponse apportée
Insignificant modification of code leads to NaN
Think about what is happening with this loop: for i = 1:num_iterates x = A*x; R(:,i) = x/norm(x); %%%% Problem Line %...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Skip instance of a loop with error
Something like this: try fn = x+y+z; %The function is just a representation. I am actually performing a Fi...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Performance of applications that are developed in MATLAB versus C++/C
Any such comparison will depend on exactly what computations are in question. A general comparison of languages probably isn't ...

plus de 5 ans il y a | 4

Réponse apportée
Numerical Integration by Matlab
Hint: You might look here: https://en.wikipedia.org/wiki/Normal_distribution Knowing that the integral of the Normal density f...

plus de 5 ans il y a | 0

Réponse apportée
Does MEX compiler (and the associated shared files) automatically ship with all MATLAB distributions of any license type?
Mex routines are not guaranteed to be compatible between different versions of MATLAB, for the very dependency reasons you alrea...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
function call returns "index (1.2): subscripts must be either integers 1 to (2^63)-1"
You are missing a multiply operator. There is no implied multiplication in MATLAB with the 2( combination. E.g., u_1 = @(y) ...

plus de 5 ans il y a | 0

Réponse apportée
Mex, how to copy an array to output
See the solutions I posted here: https://www.mathworks.com/matlabcentral/answers/702682-with-mxmalloc-and-mxsetdoubles-mex-func...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
With mxMalloc() and mxSetDoubles(), mex function crash matlab
You have memory leaks in your current code. E.g., tmpResult = mxMalloc(numRows*numRows*sizeof(*tmpResult)); // this memory ...

plus de 5 ans il y a | 2

| A accepté

Réponse apportée
hi I am trying to use this code to solve RK4 equation and I keep receiving this error . what should I do?
Your implementation has several errors: Looks like you are creating i as a vector and then using that for indexing in A(i) You...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Filling in multidimensional array efficiently
Something like this maybe? k = 1; % your loop b = r x 1800 matrix f = whatever ch = whatever r = size(b,1)...

plus de 5 ans il y a | 0

Réponse apportée
extract out values out of loop
Make them arrays and assign to the elements. E.g., for i= 1: length(Hi) [XYZ(:,i),H(i),D(i),I(i),F(i)] = wrldmagm(Hi(i),La...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Projectile motion with drag. My problem is in the loop as the number of elements are not equal apparently on the left and right. Id appreciate detailed input ive been lost on this for a couple of days now
This makes AccDrag a vector: AccDrag(1,:) = [AccDragX(1) AccDragY(1) 0] So here you have a vector on the right hand side and a...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
calling another matrix in a matrix
Don't do this! Creating numbered named variables in your code like yakit_1, yakit_2, etc. leads to downstream coding problems a...

plus de 5 ans il y a | 0

Réponse apportée
Newton Raphson Method in a for loop
You don't have the Newton-Raphson method coded correctly. You need to update the x value you use for the delta within the loop ...

plus de 5 ans il y a | 0

Réponse apportée
How to use ode45 to solve a system of two differential equation?
If you don't have the Symbolic Toolbox, here is the procedure: 1) Write your equations in matrix form: F*qdotdot + G*qdot + H*...

plus de 5 ans il y a | 0

Réponse apportée
Multiplication of large matrices
Do NOT transpose your matrix explicitly before the multiply. That will only cause a deep copy, double the memory footprint, and...

plus de 5 ans il y a | 1

Réponse apportée
[Matlab Grader] How to check if the matrix has upper triangular form?
This looks like a display issue. The numbers in the lower triangle are not exactly zero, they just display that way out to 4 dig...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Questions about how to plot a summation function with two variables
From the formula image, it appears you need fun( ) to create a matrix z where each element corresponds to the formula for a part...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How could I solve this system of ODEs?
For your case, simply start the run at time T and integrate backwards in time to t0. I.e, this is still an initial value proble...

plus de 5 ans il y a | 1

Réponse apportée
Problem when Indexing large integer arrays
This [v(end):-1:v(1)] creates an indexing array that starts at the value v(end), increments by -1, and ends with v(1). It doe...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
dot product between two different size of matrix
Assuming everything is real and by "dot product" you aren't involving complex conjugates, simply this C = B * A';

plus de 5 ans il y a | 1

Réponse apportée
Multiply one dimension of a 3D Matrix by a vector
C = A .* reshape(B,1,1,[]); For earlier versions of MATLAB that do not have implicit expansion it would be this: C = bsxfun(@t...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Graph Method Root Finding
E.g., x = -1:0.01:1; % pick some x range to look for a root plot(x,x-2.^(-x)) % plot the equation grid on or fplot(@(x)x-2....

plus de 5 ans il y a | 0

Réponse apportée
covert 128 binary string into hex decimal
b = your binary digits vector d = [8 4 2 1]*reshape(b,4,[]); h = sprintf('%x',d);

plus de 5 ans il y a | 3

| A accepté

Réponse apportée
How to use the three points A1, A2, and B0 to calculate ∠A1B0A2?
A1 = [171 422] ; A2 = [415 413] ; B0 = [277 386] ; d1 = A1-B0 ; d2 = A2-B0 ; theta = atan2( norm(cross([d1 0],[d2 0])), dot...

plus de 5 ans il y a | 0

Charger plus