Risposto
How to solve a differential equation and the plug a number in for the resulting differential equation
Hi Benjamin, syms x d = diff((1 + 5 * x^2 - 2 * x^3 + 8 * x^4) ^(1/8)) x0 = 8.8 val = double(subs(d,x0)) val = 0.2...

circa 6 anni fa | 0

Risposto
System of nonlinear equations
Hi Aleem, Wolfram Alpha is solving this numercially not analytiaclly so you might as well, too. b = @(t) 10*cosd(15)*(t+ 2*(4...

circa 6 anni fa | 1

| accettato

Risposto
My diff function won't work and I'm not sure why
Hi Julia, if you want to use this for a variety of functions, then fun = @(x) exp(2*sin(x)) - x; % one example [f g ...

circa 6 anni fa | 0

Risposto
How to implement polyval in more than one dimension when the summation includes complex coefficients
Hi Matthew, unless I'm missing something, % make up some data M = 5; N = 6; c = rand(N,M)+i*rand(N,M); eps = .3; delt = ...

circa 6 anni fa | 1

| accettato

Risposto
How can I make curve form data?
Riyadh; The differences from a straight line are small, so it make sense to look at that difference. x = [7000,7050,7100,7150,...

circa 6 anni fa | 0

Risposto
Does fftn do post padding ?
HI raheem, It's pre padding of the original x array by 56 in each dimension, before the fft. As you can see, the y array has n...

circa 6 anni fa | 0

Risposto
Compute the difference matix between a marix and another matrix in MATLAB
Hello Jesujoba, it looks like A and B must have the same number of columns but can have a different number of rows. The for-lo...

circa 6 anni fa | 0

| accettato

Risposto
Problem Using Summation Notation with Euler's Number
Hi Jonathan, symbolics is just telling you that it can't do the sum explicitly and get an analytic solution. Fortunately the t...

circa 6 anni fa | 0

| accettato

Risposto
Problem in 2 dimensional numerical integration
Hi Ashok, you can make a decent case that the answer is 1/2, at least if the variables are continuous. For the first term, In...

circa 6 anni fa | 0

Risposto
Bessel function - roots and zeros on interval <12,20>
HI Jaroslav Do roots and zeros mean the same thing? The code below uses Newton's method to find the roots, which has the advan...

circa 6 anni fa | 1

Risposto
3D vector plot of electric field
Hello QP, Once you have made the matrix variables XX,YY,ZZ, those are the ones you use for further calculation, no longer x,y,z...

circa 6 anni fa | 1

Risposto
Plotting a matrix of co-ordinates
Hi Anmoi, points = rand(2,56) plot(points(1,:),points(2,:),'o') grid on If you go to the help for plot you will find many ot...

circa 6 anni fa | 1

| accettato

Risposto
Matrix division problem on adding condition
Hi David, MODIFIED the solution is not immediate, but you did ask … Take the example A = [1 2 3] C = [5 2 -1] B = the matr...

circa 6 anni fa | 2

| accettato

Risposto
Evaluating svd() on slice of matrix array.
Hi Morten I take it that your matrices are close to being orthonomal already. Try [Q, ~] = qr(A(:,:,i)); A(:,:,i) = Q; whic...

circa 6 anni fa | 0

Risposto
How to solve a system of linear equations with strict inequalities and equalities?
Hi Terri, Looks like it is not possible. You have [F1;F2;F3] = [10 2 10 15 20 8 6 4 12] * [x1;...

circa 6 anni fa | 0

| accettato

Risposto
How can I solve for the matrix S in the below mentioned matrix equation?
Hello NAA, It appears that you mean that d is 3x6,not 6x3. Let E = EPS_T - EPS_S and abbreviate inv(S) as iS. You are looki...

circa 6 anni fa | 1

| accettato

Risposto
How do i scale to my axis after fft?
Hi Cherie, you have a time array of length, 601 and spacing deltat = .01. The frequency array is going to be 601 points with t...

circa 6 anni fa | 1

| accettato

Risposto
Raise the elements of a matrix to a power.
Hi Ricardo, min3 = min.^3 It's not a good idea to name a variable 'min' because that is the name of a built-in Matlab function...

circa 6 anni fa | 2

| accettato

Risposto
Solving an equation with terms that require double summation and products
Hi GS, I reproduced your results and then calculated the equation using for loops, just to make sure, and got 1.8767e37, same a...

circa 6 anni fa | 0

| accettato

Risposto
Solving an equation with terms that require double summation and products
Hi GS, try aij_2 = aij.^2 Since y1 and y2 are scalars, there are three dots in the last equation that you can drop. I usuall...

circa 6 anni fa | 0

Risposto
How to plot double sided amplitude spectrum after FFT?
Hi Hamid, at the end of your code I added the following: figure(2) plot(f,fftshift(cmag),'o'); grid on xlim([-30 30]); f...

circa 6 anni fa | 1

| accettato

Risposto
Why are the symbolic units not evaluated by a square root?
Hi Lucas, try your original code but with the last two lines omega_n = (pi/l)^2*(g*E*I/(A*lambda))^(1/2) omega_n = vpa(simpli...

circa 6 anni fa | 0

Risposto
how to calculate direction in rotated coordinate system
Hi UWM, Assuming the correct rotation has already been made, then calling the resulting vector u, and making sure it is normali...

circa 6 anni fa | 0

| accettato

Risposto
Why did i get different answers for eigenvectors for different powers of a matrix?
Hi RMT, Since you have two identical eigenvalues, the eigenvectors corresponding to those eigenvalues are not unique*. They on...

circa 6 anni fa | 1

| accettato

Risposto
Element-Wise Vector Division
HI Mark, new_vector = K./vector; ./ (dot divide) does element-by-element operations.

circa 6 anni fa | 1

| accettato

Risposto
Vectorizing the addition of a vector of values with associated indices to an existing vector, when the vector of indices has repeated values.
Hi Nathan, sparse matrices automatically do what you want. You have full matrices, and sparse operations are on the slow side ...

circa 6 anni fa | 0

| accettato

Risposto
Sub-sampling the minimum number of points to accurately reproduce a curve
Hi Michael, take a look at the interp1 function. There are several choices for the type of interpolation, and assuming a curve ...

circa 6 anni fa | 0

Risposto
Cannot find ALL solutions to simultaneous equation
Hi CZ If exp(x^2+y^2+z^2) = 9 then x^2+y^2+z^2 = log(9) which is a lot less challenging for symbolic evaluation. clear all...

circa 6 anni fa | 0

| accettato

Risposto
Troubles assigning colorbar values in a bivariate histogram plot
Hi Mar, I have been looking at this with some data I made up, but now that you posted it I was able to plug it in. I thought y...

circa 6 anni fa | 1

Risposto
What to use instead of simple function?
Hi Liliana, 1/(2*pi^(1/2)*(1/(4*a^2))^(1/2)) may not be pretty, but it does equal a/sqrt(pi) so it is mathematically correct....

circa 6 anni fa | 0

Carica altro