
Paul
Statistics
RANK
80
of 258,294
REPUTATION
1,662
CONTRIBUTIONS
58 Questions
617 Answers
ANSWER ACCEPTANCE
43.1%
VOTES RECEIVED
191
RANK
of 17,801
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Change the size of a log in simulink
Double click the ToWorkspace block and increase the Decimation parameter. If you really need all of the data, maybe something m...
15 hours ago | 0
Designing an Observer - Control System
I don't think you're going wrong anywhere (though you might want use size(Aa,1) instead of length(Ca) in a few places). I think ...
1 day ago | 0
Plot a 2D Gaussian prior
Something like this? mu = [1 1]; Sigma = [1 .7*1*sqrt(2); .7*1*sqrt(2) 2]; [X,Y] = meshgrid(-2:.1:4); p = mvnpdf([X(:) Y(:)]...
1 day ago | 0
| accepted
Question
Is exp() a Documented Function in the Symbolic Math Toolbox?
I can't find it.
1 day ago | 3 answers | 0
3
answersCalculate convolution of two given continuous signals in matlab
Assuming a closed form solution is desired this problem can be solved with the Symbolic Math Toolbox syms rectangularPulse in...
1 day ago | 0
Why do the eul2quat and quaternion functions differ on the calculated results?
Hi cui, I think that both eul2quat and quaternion('frame') are using, right-handed, intrinsic rotations and the sequence of rot...
2 days ago | 0
roots(x) vs root= interp1(y,x,0)
The query points in x are spaced too far apart for the linear interpolation used by interp1 to be accurate relative to the actua...
4 days ago | 0
Fourier transform of a rectangular pulse
Hi Luke, Your original code was o.k. except for plotting against t. It is typically plotted against an array of frequencies. Al...
4 days ago | 1
Calculation of Phase margin
Hi T, it's a tricky problem becase of the shape of the gain curve around the phase cross over frequency. w=1.4910; k=sqrt((w^4...
6 days ago | 0
| accepted
Find the impulse response
Hi Marina, Sometimes the Symbolic Math Toolbox works in mysterious ways and it is difficult to manipulate expressions into simp...
6 days ago | 1
| accepted
Function 'odeToVectorField' introduces undesired 'free' variable
By default, the Symbolic Toolbos assumes all variables are complex. So using the ' operator, which is the complex transpose oper...
7 days ago | 2
| accepted
Within a script, can I close or redirect a Windows File Explorer window opened with 'winopen'?
Maybe using an actxserver is a viable approach. I've used it for interacting with Power Point. It's not so bad once you get the...
7 days ago | 0
How can I remove this error?
Either: a) double click on the Audio Device Writer block and uncheck the box for Inherit Sample Rate from Input and set the des...
7 days ago | 0
| accepted
I'm not sure if a user defined MATLAB function is executing or not in Simulink.
Consider replacing the threshold crossing detection functionality in spike_checker with a self resetting integrator. Feed the s...
7 days ago | 0
Different results when compearing DFT from fft to the "real" fourier transformation
Hi Lillebror, Referring only to the code in the original question, it looks like there is a mix up between the variables used t...
7 days ago | 1
What frustrates you about MATLAB? #2
It would be nice if I could open a file in the editor as read-only, click somewhere to set the editor for read only after a file...
8 days ago | 0
Most effective way to solve nonhomogeneous linear ODE problem
Hello Michal, Following up on this comment, I'd be concerned about the solution of the "reference" method if that's what's bein...
8 days ago | 1
Discrete Transfer Function Truncating Signal?
If the sample time of the DTF block is 0.3, and the simulation runs for 20.1 - 20.39999999 seconds, there should be 20.1/0.3 = 6...
16 days ago | 0
Simplify Transfer Function Matrix from State Space Form
Hi Diego, It looks like the code used the Symbolic Math Toolbox? If so, there's no need to go that route unless you really nee...
20 days ago | 0
| accepted
nufft wrong result ?
Hello Kraka, Have you tried setting up your query points to exactly include f = 0.025? Also, it wasn't clear why the plot comma...
20 days ago | 0
| accepted
How to find the eigenvectors for multiple degree of system?
Hello KG, Divide each mode shape by its first element so that the first element of each mode shape is unity. M=[3 2 1;2 2 1;1 ...
20 days ago | 1
Question
Does ArrayValued Affect the Efficiency of Integral()
Suppose I want to numerically integrate a function of a scalar that returns a vector f = @(x) [1 ; sin(1000*x)]; To integrate ...
20 days ago | 1 answer | 1
1
answermirroring a magnitude response of a filter from -1 to 1
freqz() takes a third input that allows you to specify the frequency vector. n1= 15; %order Fs= 100; %sampling frequency fc= ...
20 days ago | 0
How to reformat the display output precision of e.g. the TF() function?
The function poly2str in the CST may be of interest, I think that the numerical formatting is governed by a single line, so I g...
21 days ago | 0
| accepted
partial sum of a series
Hi SSBGH, To plot the function, we need a set of x-values to plot over. As you've done, define the function and the CFS coeffi...
21 days ago | 0
Fourier coefficients of a function
Hi SSBGH If you want a closed form solution, use the symbolic toolbox to define f(x) syms x f(x) = .... Once you have that y...
22 days ago | 0
| accepted
Fast Fourier Transform function
The code in the question is plotting R vs index, but it sounds like the goal is to plot R vs frequency (Hz). So we need to comp...
23 days ago | 1
| accepted
How do I keep f as a variable in a state space model, as f is supposed to be the input variable??
Hello Arya, Assuming that f(t) is the input to the system, it is not included in the B-matrix. Rathe, the B-matrix should be: ...
23 days ago | 0
Undefined function 'hinfnorm' for input arguments of type 'tf'.
Hi Kashish, If you don't have the Robust Control Toolbox for hinfnorm(), you can probably use sigma() from the Control Systems ...
24 days ago | 0
| accepted