Respondida
how to solve this equastion : y''-1=exp(x) second order diff. equastion by use matlab command please reply
Of course , Trosten gave the solution for this ODE, but maybe it worths to have a look on how we can use symbolic maths toolbox ...

más de 7 años hace | 0

Respondida
Hi I'm trying to execute the below code to observe the impact of noise on the FFT of the signal. Even if i'm increasing noise content there is little impact on the signal's Spectrum. Why ?
Your signal is a sinusoidal signal. All its energy is concentrated to one frequency. On the other hand, noise power spreads al...

más de 7 años hace | 0

| aceptada

Respondida
How can I increase the notch attenuation without changing the bandwidth?
You can place two similar notch filters in a cascated way: clc; clear; %% parameters Fs = 1500; % Sampling Fre...

más de 7 años hace | 0

Respondida
How to put constraints to an equation[constant]?
My suggestion: clear; clc; syms x f(x)=piecewise((2<=x & x<=4), 1/2, 0) fplot(f(x), 'LineWidth', 3); ...

más de 7 años hace | 1

| aceptada

Respondida
calculating number of comparison in a vector
It depends on the algorithm than you will use. You can use a <https://en.wikipedia.org/wiki/Bubble_sort bubble sort> routin...

más de 7 años hace | 0

Respondida
How to calculate integral along the boundary of closed curve?
Provided than (x,y) points are very dense you can approximate the area you ask, good enough: clear; clc; % generatio...

más de 7 años hace | 1

| aceptada

Respondida
Multiple plots in one m file
Before using plot() command you should place a "figure" command For example: clc; clear; close all; t=0:0.1:10; ...

más de 7 años hace | 0

Respondida
ifft output is complex?
After the manipulations of fft values X , If abs(X) exhibits even symmetry and angle(X) odd symmetry, then ifft should give ba...

más de 7 años hace | 1

Respondida
How to properly plot a graph for these values in a single plot.
Your problem is data into X . Matlab expects that X contains numeric values. But in your case, if you display values of X , ...

más de 7 años hace | 0

Respondida
Unable to find explicit solution
Your query is a mathematical issue and not a matlab issue. Let me give you an example... Supose you want to solve analyt...

más de 7 años hace | 0

| aceptada

Respondida
Weights of LMS adaptives filter: bode commant, plot magnitude and phase
Here you are a more complete script: clear; clc; close all; %% problem definition % LMS weights w=[ -0.1229 ...

más de 7 años hace | 0

Respondida
Weights of LMS adaptives filter: bode commant, plot magnitude and phase
A very useful script for your case: clear; clc; close all; % LMS weights w=[ -0.1229 -0.0786 -0.0...

más de 7 años hace | 0

| aceptada

Respondida
How to set initial values for the start of a feedback loop in Simulink
A common and popular way to set initial conditions inside a closed loop is to put delay elements at the feedback path. Anyway, f...

más de 7 años hace | 3

| aceptada

Respondida
Plotting a radial function f(r), in a 3d isotropic way, with axes (x,y,z=f(x^2+y^2)).
I reshaped my code. Lets say that we have loaded values of r and f(r) from a file. Cause I haven't these files , I must crea...

más de 7 años hace | 0

| aceptada

Respondida
Plotting a radial function f(r), in a 3d isotropic way, with axes (x,y,z=f(x^2+y^2)).
Dear Erez Here you are my suggestion: clc; clear; close all; % values of r r=0:0.1:8; % create value...

más de 7 años hace | 0

Respondida
problem with frequency domain using fft on raw data
Instead of plot(f, P1) i suggest to use plot(f, 20*log10(P1));

más de 7 años hace | 0

Respondida
How to draw 3D bar graph of Z for specified value of X and Y.
I thing you should use stem3 command. Have a look at the following example: clear; close all; clc; x = 0:1:10; ...

más de 7 años hace | 1

| aceptada

Respondida
how to plot the log scale for the following values ?
clear; close all; clc; x = [2.51 ;2.55; 2.56]; y = 10:10:30; loglog(x,y,'bo-'); grid on; zoom on;

más de 7 años hace | 0

Respondida
How to calculate mean of this signal in the image below.
I tried to generate your input data. If you set noise_amp=0, you will observe the influence of moving average on your useful ...

más de 7 años hace | 2

| aceptada

Respondida
I've just started learning matlab and I am trying to solve this differential equation
you can access the value of y(1) by writting .... y(1) syms y(x) %dy=diff(y) ode= diff(y,x,2)+3*y==0 ...

más de 7 años hace | 0

Respondida
f(x,y) = xy/(x²+y²) ,(x,y)≠(0,0),  f(x,y)= 0 , x=y=0.How to draw a graphics by using Matlab.
Provided that you have symbolic maths toolbox you can use the following code : clear; clc; syms x y % define func...

más de 7 años hace | 1

| aceptada

Respondida
Hi !! I want to find area under a sine curve , from interval 0.1 to 0.3.
You have a syntax error on your command. You must omit parenthesis from sin function. I am giving it to you at the proper form...

más de 7 años hace | 0

Respondida
Pre–emphasis - Signal Processing
Your question regards frequency response of FIR filters. I suggest to study (and run) the following script. clear; clc; c...

más de 7 años hace | 0

Respondida
Matlab gets basic arithmetic completely wrong!
Vector v1 is corrupted. It contains "NaN" at the most of its values. Matlab subtracts only at positions where v1 contains vali...

más de 7 años hace | 1

| aceptada

Respondida
How do I solve complex Integro-Differential equations in MATLAB?
Hi Aditya In order to solve this kind of equations symbolically, you should have Symbolic Math Toolbox. Provided that, I'...

más de 7 años hace | 1

| aceptada

Respondida
How to provide Matlab output(stream of 1s and 0s) as input to SIMULINK and view via a scope?Am new to Simulink
You have two optons: 1) load your data directly from workspace into simulink, using "From Workspace" block 2) save your da...

más de 7 años hace | 1

| aceptada

Respondida
Different time response of same trasfer function in matlab and simulink
At simulink, you have to go to << Model Configuration Parameters> <</matlabcentral/answers/uploaded_files/128278/p1.jpg>> ...

más de 7 años hace | 0

| aceptada

Respondida
How to create initial population of 100 random set of coefficient for design filter using genetic algorithm?
Hi Johan I suggest the following script: % Generation of N sets of coefficients. Each set of contains M values N=100...

más de 7 años hace | 0

| aceptada

Respondida
i have variables 'Ereal2',Ereal3,Ereal4,Ereal5.....so on.....how to call these variable in a single loop one by one.
Hi Ravi I have to agree with Jonas. But if you insist to use indexing which is embedded to the variable name, you can take ...

más de 7 años hace | 0

Cargar más