回答済み
complex ifft output for hermitian input
Hi Md. I didn't inspect the whole code, but did notice that the calcuation of timeResp seemed to have the ifft/ifftshift operat...

3年以上 前 | 1

| 採用済み

回答済み
How can I evaluate a complex definite integral?
Hi Valentin, Shouldn't the lower bound on the integral be fg2, not 0? Don't see how the reult will be 0.2952. The integrand is ...

3年以上 前 | 1

| 採用済み

回答済み
minreal tolerance not respected
Hi Daniel, As best I can tell after sifting through the code, tol is generally compared to the distance between the zero and po...

3年以上 前 | 1

回答済み
Energy and Power of a Piecewise Function
Hi Iakovos, Try using piecewise to simplify things. syms t real x(t) = piecewise(-3 <= t <= 0, cos(sym(pi)*t),0 < t <= 2, 2, ...

3年以上 前 | 1

| 採用済み

回答済み
DC gain for FIR high-pass filter using fir1
Hi Masao, Let's try the proposed methods. High-pass fir1 filter bhigh = fir1(500,5/750,'high'); [h0,w] = freqz(bhigh,1,0:.00...

3年以上 前 | 0

| 採用済み

回答済み
Plotting sin (x/x) function in terms of Mag(dB) over Frequency
Hi IFECHUKWU, sin(x)/x can take on negative values, for example x = 5*pi/4; sin(x)/x Taking the log10 (as neeed for dB, not ...

3年以上 前 | 0

| 採用済み

回答済み
DSP/IIR filter butterworth
Hi Steven, Here is the original code (with minor changes) fpass = 2500; fstop = 4000; As = 95; Rp=3; fs=44100; %Data wp=(fpas...

3年以上 前 | 1

| 採用済み

回答済み
nonlinear variable state space observer pole placement
Hi Bernd, Matlab assumes by default that all sym variables are complex, and this assumption can sometimes lead to unexpected re...

3年以上 前 | 2

| 採用済み

回答済み
How to mean data of second column with respect to the similar element in the first column
Check out splitapply. Applies directly to this problem.

3年以上 前 | 0

回答済み
Problem with factoring a symbolic variable
If only one term contains Td_s, then syms T_u T_t T_s tau_u Tdd_u Tdd_t Tdd_s Td_u Td_t Td_s; eq = sin(T_s - T_u)*Td_s^2 + sin...

3年以上 前 | 0

回答済み
[DISCONTINUED] MATLAB Answers Wish-list #5 (and bug reports)
I wish that the Categories feature be much more useful. Check out hte categorization of this Question: Scroll over the right ...

3年以上 前 | 0

回答済み
Use Matlab Function Block to plot into figure created by Matlab Script
Hi Jannis, I got this model to work The code in the Matlab Function block is function y = fcn(u,t) persistent ax1 if ...

3年以上 前 | 0

回答済み
Gain/phase margin calculated relative to -540.
Hi Jaco-Louis From the Question: "... according to the margin documentation it is supposed to return the minimum margins, which...

3年以上 前 | 0

回答済み
z transform of a left handed sequence
Hi AlireaA You are on the right track by breaking this problem into two parts. Let's look at the first part syms n integer sy...

3年以上 前 | 0

| 採用済み

回答済み
z transfer function evaluates to inaccurate value near z=1
Hi Ashish, This problem illustrates a couple of things to keep in mind when using the Control System Toolbox Here is the origi...

3年以上 前 | 2

回答済み
Failing to plot a fourier transform
Hi Lorenzo, On the face of it, the Symbolic Math Toolbox treatment of (normalized) sinc(x) is disappointing. Perhaps there are ...

3年以上 前 | 1

| 採用済み

回答済み
Infinity appears at Constant block in Simulink
That “inf” is the sample time of the constant block. As is the “D1” on the other blocks. Check the Simulink doc on sample times ...

3年以上 前 | 0

| 採用済み

回答済み
How to apply the reference target for LQR or LQG controller
Hi JS, One common way to track a reference input with a Type 1 system is to use integral control by augmenting the plant with a...

3年以上 前 | 1

| 採用済み

回答済み
Why am I receiving three outputs for this lsim function?
Hi Hunter k1=1; A=[0 1 0 0 ;-k1 -0.4 k1 0.4 ;0 0 0 1; 0.25 0.1 -0.25 -1.35]; B=[5;0;0;0]; C=[1 0 0 0]; D=0; x0 = C; t = 0...

3年以上 前 | 0

回答済み
Solve differential equation to get variable
Hi Milan, I modified as follows. Not sure if this is what you're looking for: syms d_F ; syms d_F_c; syms dM_B; %syms Thet...

3年以上 前 | 0

| 採用済み

回答済み
How to fix errors within double integral.
Hi @Amanda, The doc page for integral2 say that the function that defines the integrand "must accept two arrays of the same siz...

3年以上 前 | 0

| 採用済み

回答済み
Having trouble with nonpolynomial equation systems
Equations 1, 2, 5, and 6 can be solved for a parametric solution under some (I hope) reasonable asumptions on the variables. I c...

3年以上 前 | 0

回答済み
Signal dimensions inside a simulink function
Based on the error message, it sounds like you'e requried to specify the dimensions of that outport. Do you know what the dimens...

3年以上 前 | 0

回答済み
Can anyone help understand what the blocks in this figure are and where to find them in Simulink library?
Assuming these are both from Simulink library. 1. Double click on the block. The BlockType will be at the top of the resultsing...

3年以上 前 | 0

回答済み
location of second peaks in fft
Hi peter, The elements of the output of fft as implemented in Matlab correspond to angles around the unit circle. For an N-poin...

3年以上 前 | 0

| 採用済み

回答済み
integral of two added function can't be implemented
Hi Faisal, If the plot for the answer to Q4 is corret, then does the integration really need to start from -inf? However, I su...

3年以上 前 | 0

回答済み
Symbolic dependency apparently sometimes gives wrong answers
Hi Mohammad, This works, at least for the examples cited in this comment. Haven't tested for anything but those examples. syms...

3年以上 前 | 0

回答済み
how to find the area between sinx and sin2x with plot on range [0,pi] as from this code its giving negative area,?
Hi Aashay, After commenting out the code for pos and negArea that wouldn't run because y is not defined (and even if was define...

3年以上 前 | 0

| 採用済み

質問


Should ztrans Work Better when Using heaviside() ?
Recently ran across peculiar behavior with ztrans. Define some variables syms n integer syms T positive Set sympref so that ...

3年以上 前 | 0 件の回答 | 0

0

回答

回答済み
how to make a sum of squares symbollically known to MATLAB for use in simplification
Hi Michael, simplify works for this case: syms a b c d x y z f = (a) * (b) * (c) * (1- x^2 - y^2 - z^2) * (d) assume(1 - x^...

3年以上 前 | 0

さらに読み込む