Answered
a Simple Matrix question
Hello LC Matrix_C = matrix_A; Matrix_C(matrix_A == Matrix_B) = 255;

6 years ago | 1

Answered
How can I get more than 49 digits of pi in a string?
Hi India, vpa(pi,100) for example (although you need the symbolic toolbox for vpa) And see Walter's comment below. The answer...

6 years ago | 1

Answered
plot polygon function error
Hi msh, the reason is pretty simple. You are asking for an output from the function, but you have not provided any in its defi...

6 years ago | 0

Answered
why the legend show wrong lines ?
Hi tomer, try replacing plot(t,43*(19.6e-3)/(100*15e-3),' black '); %% plot--> of boundery limit with plot(t,43*(19.6e-3)/(...

6 years ago | 0

| accepted

Answered
Solving 3 Simultaneous Exponential Equations
HI Rory, just for completeness y1 = 159.2543; y2 = 117.2699; y3 = 63.8384; x1 = 291.15; x2 = 293.15; x3 = 299.15; A1 =...

6 years ago | 1

Answered
solve on vector equation
Hi Michiel, The unit vector N has to lie in the plane defined by s1 and s2. The result for any s1,s2 is N = s2 - (n1/n2)*s1;...

6 years ago | 0

Answered
how can I creat a matrix of all possible combinations of zero and ones across eight digits.
HI Yonatan, not a black box: function a = x10(ndigits) a = ['0';'1']; count = 1; while count < ndigits n = size(...

6 years ago | 0

Answered
IFFT of Convolution equivalence
Hi JOB/Ridwan Here is a small example where a and b are padded with zeros, so that regular convolution can be compared with con...

6 years ago | 1

Answered
Why 999^999-999^999 is NaN?
HI Fahmy, >> realmax ans = 1.7977e+308 That's the largest floating point number in Mallab, which uses IEEE754 64 bit double ...

6 years ago | 0

Answered
How to obtain CDF from the below PDF function
Hello Manesf, This pdf seems related to the Weibull distribution. I made some abrreviations Etta_d = xid Etta_D = xiD ...

6 years ago | 1

| accepted

Answered
In the matlab page of Associated Legendre Polynomials, is the example for the spherical harmonics correct?
Hi chaitanya, Good catch. Really good catch. In addition to the signs of the lobes, I believe that Matlab's Y32 is functional...

6 years ago | 2

| accepted

Answered
How to plot the velocity of a crate on a ramp for different angles?
Hi Kiera, The plot above shows the velocity of the box at the top of the ramp getting larger as the angle of the ramp gets stee...

6 years ago | 0

Answered
associated legendre functions matlab
Hi chaitanya, It's apples and oranges. When the domain of the argument is -1 <= x <= 1, the function is -sqrt(1-x^2). That's ...

6 years ago | 0

| accepted

Answered
Implementing a sum with summands of unequal spacing inside an integral
Hi Richard, I don't claim to be a professional although I did use Matlab at work, and here is how I would do this. The main th...

6 years ago | 1

| accepted

Answered
Does the permute function have a bug?
Hello ZY, see 'help permute'. Permute puts the dimensions in the order listed, so in this case the old 4th dimension goes firs...

6 years ago | 0

| accepted

Answered
Is it possible to create periodic boundary conditions for a matrix with linear indexing?
Hi Tom, mod(k,N)+1 for the raised index, k+1 mod(k-2,N)+1 for the lowered index, k-1 and these do give the correct vector of ...

6 years ago | 1

| accepted

Answered
how to solve the equation: xdot=AX+Bu; where u=sin(2t)
Hi Ebraheem, ode45 is fine with explicit time dependence in the calculation of xdot: [t, x] = ode45(@smc5,[0, 10],[1, -2]) pl...

6 years ago | 2

| accepted

Answered
Series expansion with Legendre polynomials
HI James, I won't address how one might print the result, but the mistake in the algrbra is that you should use y(i) = ((2*i+1...

6 years ago | 1

Answered
Chua Oszillator in Matlab, Chaos
Hi Albin, In your second version, the equation for xdot is dimensionally incorrect. Changing it to xdot = (1/C1)*(G*(y-x-g));...

6 years ago | 0

Answered
Meshing a complex function with limits
Hello Haider, for someone who is new to Matlab you are doing well. You just need a couple of changes. First, you forgot that r...

6 years ago | 1

| accepted

Answered
plot Gibbs phenomenon individually???
Hi Neptune, I agree that my comment on what the Gibbs phenomenon actually is was not very helpful to the actual problem at hand...

6 years ago | 0

| accepted

Answered
Automatic Complex Conjugate in ftt
Hello Ha Oe the quote command is not just the transpose, it's the complex conjugate transpose (Hermetian conjugate). For the s...

6 years ago | 1

| accepted

Answered
The input signal is complex conjugate, but the IFFT output is complex!
Hello yz, The problem is that to produce a real ifft, the first element of Ax, which is the f=0 term, has to be real since that...

6 years ago | 1

| accepted

Answered
Why is dsolve returning an arbitrary constant?
Hi David, you need slightly different syntax. syms y(t) g L c Dy = diff(y) S = dsolve(diff(diff(y(t))) -L*y - g == 0, y(0) =...

6 years ago | 0

| accepted

Answered
How to plot a maximum value on an existing line graph
Hi Grace, Here is an example of what I think you are looking for. The idea is to use the second output of max to find the inde...

6 years ago | 1

Answered
Matlab output is not matching with the mathematics...
Hi Hari, the problem is that 2*pi*f*t is a nice linear function of t for all t, but the output of acos is restricted to the ran...

6 years ago | 1

| accepted

Answered
Non Linear DE solving using ODE45
Hi Muhammad, with that set of constants, the time has not been run out far enough to see the final result. Try changing the ti...

6 years ago | 0

| accepted

Answered
ODE45 calculating the total energy in the system and checking the solver
Hi Kostas, The problem is in the calculation of the dissipated energy which is not any kind of sum of (y C dy/dt), but rather t...

6 years ago | 0

| accepted

Answered
Constructing an FFT-like result array.
HI betz, All of the following applies if the time domain waveform is REAL For a N point fft, N even: (a) point 1 is the four...

6 years ago | 2

| accepted

Answered
Equation of Motion is Blowing Up
HI Samuel, I won't have access to Matlab for a few days so this needs to be verified, but I believe that in the last line of th...

6 years ago | 0

Load more