
Paul
統計
All
Content Feed
回答済み
Assigning certain seed value to Simulink Uniform Random Number block in programmatic way
Hi JW, That looks like a typographical error in the doc (which is odd, I've always imagined stuff like that is generated automa...
Assigning certain seed value to Simulink Uniform Random Number block in programmatic way
Hi JW, That looks like a typographical error in the doc (which is odd, I've always imagined stuff like that is generated automa...
約17時間 前 | 0
| 採用済み
回答済み
Number of filter taps in Gaussian filter design
Hi Jay, The doc page for gaussdesign states "The number of symbols between the start and end of the impulse (span) and the num...
Number of filter taps in Gaussian filter design
Hi Jay, The doc page for gaussdesign states "The number of symbols between the start and end of the impulse (span) and the num...
1日 前 | 0
回答済み
Inconsistency between the FFT results and the analytic spectrum of a Gaussian function
Hi Sherwin, fft assumes the input sequence starts at k = 0, so we have to apply ifftshift on the input to fft. fs = 10; t = -...
Inconsistency between the FFT results and the analytic spectrum of a Gaussian function
Hi Sherwin, fft assumes the input sequence starts at k = 0, so we have to apply ifftshift on the input to fft. fs = 10; t = -...
6日 前 | 1
| 採用済み
回答済み
How to plug x^2+y^2 in to euler's Method
Hi Michael, Focusing only on the error message ... this line is the source of the error f(i) = x.^(2).*(i)+y.^(2).*(i); ...
How to plug x^2+y^2 in to euler's Method
Hi Michael, Focusing only on the error message ... this line is the source of the error f(i) = x.^(2).*(i)+y.^(2).*(i); ...
6日 前 | 0
回答済み
Solving symbolic third order polynomial
Hi Axel, What is the source for the equations in red? Here is Matlab's solution: syms q(t) a0 a1 a2 a3 q0 q1 dq0 dq1 t0 t1; ...
Solving symbolic third order polynomial
Hi Axel, What is the source for the equations in red? Here is Matlab's solution: syms q(t) a0 a1 a2 a3 q0 q1 dq0 dq1 t0 t1; ...
9日 前 | 0
回答済み
How to identify transfer function of a motor with IODelay?
Hi Erik, Here's what I tried: Load the data load forum.mat Run the script so I can operate on the same variables. Take note ...
How to identify transfer function of a motor with IODelay?
Hi Erik, Here's what I tried: Load the data load forum.mat Run the script so I can operate on the same variables. Take note ...
9日 前 | 1
| 採用済み
回答済み
Solving symbolically for variables that are equal to several equations
Hmm. Don't know why solve doesn't find a solution, syms xi v r a mu spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)] solve(s...
Solving symbolically for variables that are equal to several equations
Hmm. Don't know why solve doesn't find a solution, syms xi v r a mu spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)] solve(s...
12日 前 | 0
回答済み
I am trying to get my function to return two variables to the workspace. It is a very simple function. What am I doing wrong.
If you want both outputs returned, use ouput arguments on the call [m,n] = save_13(1,2) When you call a function without outpu...
I am trying to get my function to return two variables to the workspace. It is a very simple function. What am I doing wrong.
If you want both outputs returned, use ouput arguments on the call [m,n] = save_13(1,2) When you call a function without outpu...
12日 前 | 0
回答済み
Simulink - output of a block as an another block parameter
Hi Wiktor, Some Simulink blocks have parameters that can be specified either internally or externally, such as the Integrator b...
Simulink - output of a block as an another block parameter
Hi Wiktor, Some Simulink blocks have parameters that can be specified either internally or externally, such as the Integrator b...
13日 前 | 0
回答済み
Hello, I want to use the LPC function to achieve AR pre-whitening, will the AR coefficient obtained by fftfilt filtering signal is a residual signal?
Hello Yx Y, Based only on reading the lpc example, it would seem that the call to fftfilt should be xest = fftfilt([0 -a(2:end...
Hello, I want to use the LPC function to achieve AR pre-whitening, will the AR coefficient obtained by fftfilt filtering signal is a residual signal?
Hello Yx Y, Based only on reading the lpc example, it would seem that the call to fftfilt should be xest = fftfilt([0 -a(2:end...
14日 前 | 0
回答済み
Using Fourier Series write a MATLAB function to synthesize the wave-form in problem (2-19), Assume A = 4mV. Your function should take n ( # of harmonics ) and produce a plot
Hi Evan First, check your code that defines one period of v(t). It''s probably easier to define v(t) using piecewise syms t T...
Using Fourier Series write a MATLAB function to synthesize the wave-form in problem (2-19), Assume A = 4mV. Your function should take n ( # of harmonics ) and produce a plot
Hi Evan First, check your code that defines one period of v(t). It''s probably easier to define v(t) using piecewise syms t T...
14日 前 | 0
回答済み
Use of syms, piecewise & conv commands
Hi Ben, First you have to decide if you want to solve the problem for a closed form expression using symbolic tools, like syms ...
Use of syms, piecewise & conv commands
Hi Ben, First you have to decide if you want to solve the problem for a closed form expression using symbolic tools, like syms ...
14日 前 | 0
| 採用済み
回答済み
how to get the correct plot of function sin(N+1)*pi*x^2/sin(pi*x)^2 with different N
Hi Daniel, I think you are correct that the limit of y as x approaches any integer is (N+1)^2. However, all the compuations are...
how to get the correct plot of function sin(N+1)*pi*x^2/sin(pi*x)^2 with different N
Hi Daniel, I think you are correct that the limit of y as x approaches any integer is (N+1)^2. However, all the compuations are...
15日 前 | 0
回答済み
Repeat array onto the same row
A=[1,2,3,4] horzcat(A,A) horzcat(A,A(1:floor(numel(A)/2))) % or use ceils depending on how you want to handle the case where ...
Repeat array onto the same row
A=[1,2,3,4] horzcat(A,A) horzcat(A,A(1:floor(numel(A)/2))) % or use ceils depending on how you want to handle the case where ...
16日 前 | 1
| 採用済み
回答済み
How to plot FFT?
Hi Sara, The frequency vector needs to be corrected. And for this data it's helpful to subtract out the mean before taking the...
How to plot FFT?
Hi Sara, The frequency vector needs to be corrected. And for this data it's helpful to subtract out the mean before taking the...
16日 前 | 0
| 採用済み
回答済み
Fourier analysis of an spwm signal
Hi Mosharof, Load the data load spwm_one_cycle.mat Plot the differences between time samples. We see that the data is not equ...
Fourier analysis of an spwm signal
Hi Mosharof, Load the data load spwm_one_cycle.mat Plot the differences between time samples. We see that the data is not equ...
18日 前 | 0
回答済み
transform the cell 'string' containing strings into a single string
load string.mat who string string_new = join(horzcat(string{:})) Probably not a good idea to have a variable named string, w...
transform the cell 'string' containing strings into a single string
load string.mat who string string_new = join(horzcat(string{:})) Probably not a good idea to have a variable named string, w...
19日 前 | 1
回答済み
Add zero padding to fft for accurate estimation
Hi Niusha Here is the first part of the code: Fs = 1e3; t = 0:0.001:1-0.001; x = cos(2*pi*100*t)+sin(2*pi*202.5*t); xdft = ...
Add zero padding to fft for accurate estimation
Hi Niusha Here is the first part of the code: Fs = 1e3; t = 0:0.001:1-0.001; x = cos(2*pi*100*t)+sin(2*pi*202.5*t); xdft = ...
19日 前 | 1
| 採用済み
回答済み
calculate wrong or "/" work different
Hi pipor The ldivide, .\ and mldivide, \, which is what you're actually using here, for the scalar case are mathematically (tho...
calculate wrong or "/" work different
Hi pipor The ldivide, .\ and mldivide, \, which is what you're actually using here, for the scalar case are mathematically (tho...
22日 前 | 0
| 採用済み
回答済み
How to get the eigenvalues of a transfer funciton matrix
Hi 宇航 杨, Considering that question 1 is about the "eigenvalues of a transfer function matrix", I would say that defining what t...
How to get the eigenvalues of a transfer funciton matrix
Hi 宇航 杨, Considering that question 1 is about the "eigenvalues of a transfer function matrix", I would say that defining what t...
25日 前 | 0
回答済み
Why does frequency spectrum gets flipped in STFT compared to the one generated from FFT?
Using random data rng(100); Matrix = rand(1000,1); Compute the stft [s,f,t] = stft(Matrix,5000/3,Window=rectwin(32),OverlapL...
Why does frequency spectrum gets flipped in STFT compared to the one generated from FFT?
Using random data rng(100); Matrix = rand(1000,1); Compute the stft [s,f,t] = stft(Matrix,5000/3,Window=rectwin(32),OverlapL...
26日 前 | 0
| 採用済み
回答済み
Stability margins for a cascaded system with getLoopTransfer functions
Hi Daam, To get the stability margins at 'e', I believe this is correct: Le = getLoopTransfer(CL,'e',-1); % open-loop function...
Stability margins for a cascaded system with getLoopTransfer functions
Hi Daam, To get the stability margins at 'e', I believe this is correct: Le = getLoopTransfer(CL,'e',-1); % open-loop function...
26日 前 | 1
| 採用済み
回答済み
Fourier transform of an impulse response function
Hi Jason, syms t tau f real % SYSTEM I'd use heaviside, but piecewise works too. h = piecewise(t>=0, 0.01005*(exp(-t))*si...
Fourier transform of an impulse response function
Hi Jason, syms t tau f real % SYSTEM I'd use heaviside, but piecewise works too. h = piecewise(t>=0, 0.01005*(exp(-t))*si...
26日 前 | 0
回答済み
I have 4 input channels (time series) and two output channels (time series) form test. I would like to calculate transfer function using tfestimate (MIMO).
Hi Dhiren, Have you tried the 'mimo' option of tfestimate (link to doc page) ?
I have 4 input channels (time series) and two output channels (time series) form test. I would like to calculate transfer function using tfestimate (MIMO).
Hi Dhiren, Have you tried the 'mimo' option of tfestimate (link to doc page) ?
27日 前 | 0
回答済み
Does Error Message Depend on Whether or Not Function is Executed Inside Try/Catch?
I put in a service request to Tech Support on this question. Their answer was that the error that's returned to the user does, o...
Does Error Message Depend on Whether or Not Function is Executed Inside Try/Catch?
I put in a service request to Tech Support on this question. Their answer was that the error that's returned to the user does, o...
約1ヶ月 前 | 1
| 採用済み
回答済み
Saving signals for each case of parsim() simulation
Hi TeraWatt, 1) Not sure what the issue is. I created a simple model with one logged signal. Ran the following script (R2022a)...
Saving signals for each case of parsim() simulation
Hi TeraWatt, 1) Not sure what the issue is. I created a simple model with one logged signal. Ran the following script (R2022a)...
約1ヶ月 前 | 0
回答済み
Problems with the creation of a randomic signal
Hi Andrea, How are you defining the bandwdith? fs=200000; %sampling frequency B = 5000; %bandwidth rng(1); n = 1e4; % no...
Problems with the creation of a randomic signal
Hi Andrea, How are you defining the bandwdith? fs=200000; %sampling frequency B = 5000; %bandwidth rng(1); n = 1e4; % no...
約1ヶ月 前 | 0
| 採用済み
回答済み
Hello, I have problem with odeToVectorField in ODE second order system of equations.
The problem is confusion between sym expressions and symfun objects. g= 9.81; m= 0.468; Ix= 4.856e-3; Iy= 4.856e-3; Iz= 8....
Hello, I have problem with odeToVectorField in ODE second order system of equations.
The problem is confusion between sym expressions and symfun objects. g= 9.81; m= 0.468; Ix= 4.856e-3; Iy= 4.856e-3; Iz= 8....
約1ヶ月 前 | 0
回答済み
readmatrix error handling in Simulink Matlab function
Try using exist: function y = fcn(u) coder.extrinsic('exist'); fileexists = 100.0; % dummy assignment to specify fileexist...
readmatrix error handling in Simulink Matlab function
Try using exist: function y = fcn(u) coder.extrinsic('exist'); fileexists = 100.0; % dummy assignment to specify fileexist...
約1ヶ月 前 | 0
| 採用済み
質問
Does Error Message Depend on Whether or Not Function is Executed Inside Try/Catch?
This call to diff resolves to symbolic diff syms s diff(@(s) 1/(s+1),s) which diff(@(s) 1/(s+1),s) I guess the parser sees t...
約1ヶ月 前 | 1 件の回答 | 0