Risposto
Simple squaring of expression
HI Wesley, syms a syms b syms c syms d syms e f = expand((1*a+2*b+3*c+4*d+5*e-8)*(1*a+2*b+3*c+4*d+5*e-8))

oltre 6 anni fa | 0

| accettato

Risposto
How to solve this equation which contains complex number, bessel equation and its derivative?
Hi bohan shen, The first six roots are shown below. First, since J1 is odd and J0,J2 are even, if z is a root then so is -z. ...

oltre 6 anni fa | 1

| accettato

Risposto
How do I assign matrix of strings to matrix of numbers?
Hi [A,B,C,D,E,F] = deal(5,8,2,9,2,1) although for a large number of variables, giving each its own name is not a winning strate...

oltre 6 anni fa | 0

| accettato

Risposto
Finding and plotting radial component in vector field
Hi djr, nc = 14; nr = 14; % Create grid [x,y] = meshgrid(0:dx:(nc-1)*dx,0:dy:(nr-1)*dy); % Plot vectors (rows and colomns ne...

oltre 6 anni fa | 0

| accettato

Risposto
How to solve first-order nonlinear differential equation where the solution is coupled with an integral?
Hi Califfo; This may be in line with what you want. At least it's changing size It's based on the idea that you know not onl...

oltre 6 anni fa | 2

| accettato

Risposto
Errors when solving equation numerically with a Heaviside Theta
Hi A7, The code below finds a solution. Instead of looking for phi0 directly it uses the variable beta = 1/(lambda*phi0) Sin...

oltre 6 anni fa | 0

Risposto
Randomly select an element from a vector satisfying a condition
Relative speeds are going to depend on the length of X and the value N that the elements have to be greater than, (2 in the exam...

oltre 6 anni fa | 0

Risposto
Matrix grouping result of combinations
Hello Joao, Maybe I need to write better blurbs. Here is a general solution for even n, with a verification check that shows t...

oltre 6 anni fa | 0

Risposto
Mesh doesn't work for cone shape?
Hello TY, I don't know if you need a fancier triangular mesh, but here is a way to a 'square' one. r = 0:.05:1; th = linspace...

oltre 6 anni fa | 0

| accettato

Risposto
Standard deviation of decimal numbers
Hi Jill, This is just the usual numerical 'error' due to the limitations of floating point arithmetic. std(.1*(ones(1,1e5)))...

oltre 6 anni fa | 1

| accettato

Risposto
Create block sparse matrix
HI ks, Here is one way. MODIFIED (see comment thread below) showing two possible methods to fill the matrix by means of a ...

oltre 6 anni fa | 1

Risposto
Flatten Matrix in Row Major Order in Arbitrary Dimensions
Hello Lucas-Raphael, I'm not sure this is what you are looking for, but B = permute(A,[6 5 4 3 2 1]); % (however many dim...

quasi 7 anni fa | 0

Risposto
Looking for a function f(x,y,z) based on 3 points to calculate interpolated/extrapolated values with a linear relation
HI Appli, This is something Matlab does really well. I assume by 'linear relation' you mean that each point has a value c = a...

quasi 7 anni fa | 1

| accettato

Risposto
Cannot plot Fourier Transform
Hi Reza, If you take a look at X, the result is X = -((pi*w*sign(w))/2 + fourier(cos(4*t)/t^2, t, w)/2)/pi^2 which shows tha...

quasi 7 anni fa | 0

Risposto
IFFT integration doesn't match cumtrapz integration
Hi NIk, This is an Interesting problem. Let g be the function and G its integral. If you just want to key in on an improved r...

quasi 7 anni fa | 0

Risposto
Obtain eigenvalue from matrix and known eigenvector
Hi Henry, you can find the indices where x = 0 and cast those entries out of both x and the corresponding rows and columns of A...

quasi 7 anni fa | 0

Risposto
fftshift with even and odd number of data points (scaling the positive and negative frequency axis)
Hi Farooq, [1] For N odd, the frequencies before and after using fftshift (or ifftshift) are as you say: N = 9 example: fo...

quasi 7 anni fa | 4

| accettato

Risposto
Getting a smooth curve instead of two linear functions
Hi Arber, This can be done reasonably well by a hyperola whose asymptotes are the two lines in question. The hyperbola of cour...

quasi 7 anni fa | 2

| accettato

Risposto
eigs bug for 0 as lowest eigenvalue in parts of the matlab versions
Hi pl, 2018b does not list 'sa' as an option for eigs, so I am speculating that that 'sa' is legacy. However, compariing 'sa' t...

quasi 7 anni fa | 0

Risposto
Reduce the computional time to calculate the mutilplying two matrixes
Hi Thu, try % N = 1000; % M = 200; Q00 = reshape(Q0,N,N*M); ff = reshape(w'*Q00,N,M)'; This is approximately four times f...

quasi 7 anni fa | 1

Risposto
sine fit in matlab vs closed-form expressions (linear least squares)
Hi Thales, Before doing the least squares calculation it makes sense to try the less ambitious result of finding the right ampl...

quasi 7 anni fa | 2

| accettato

Risposto
Replace vector of idexes with values from another vector corresponding to those indexes
Hi Nate, c = b(a) gets it done. a becomes an index vector into the elements of b.

quasi 7 anni fa | 1

| accettato

Risposto
Division problems wiht matrix, calculation error
Hi Eduardo, It's quite likely that two of the displayed values for LineInf and LineSup are not what you think they are. The va...

quasi 7 anni fa | 0

| accettato

Risposto
Audio fft shape is too strange.
Hi eunbae, The code is pretty close. The fft of a real signal has positive and negative frequencies, and what you are seeing a...

quasi 7 anni fa | 1

| accettato

Risposto
Is It possible create a function that, given an equation, finds the value of the (x) so the two members are equal?
Hi Gianmarco, the two equations aren't coupled, and using fzero on Mp^2 seems to work. In the first equation I multiplied by b...

quasi 7 anni fa | 0

Risposto
Defining derivatives in ode45
Hello sina, If you turn the diagram around by 180 degrees and then let Ca <--> Cb, you get exactly the same diagram that you st...

quasi 7 anni fa | 1

| accettato

Risposto
3d Hemisphere transformation Problem from A to 90 degrees in Z axis to B direction
Hi Musa, In the figure you don't say which axis is which, but I will assume +x axis out of the page toward the viewer, +y axis ...

quasi 7 anni fa | 1

| accettato

Risposto
Binomial simulation decreasing error
Hello LD Using M in place of your i, the binornd(M,p*ones(1,N)) creates N draws from a particular binomial distribution. Thi...

quasi 7 anni fa | 1

Risposto
power of blackbody radiation
HI rabindra, The expression has a problem at the first point, lambda = 0. But I1 is so tiny near the origin that you can safel...

quasi 7 anni fa | 0

Risposto
Phase shift - different results with pi/2 and 1.570796326
Hi Buli, Although I don't have simulink, I think it is reasonably clear what is going on. I will assume here that -pi/2 is the...

quasi 7 anni fa | 2

| accettato

Carica altro