回答済み
Creating a string with Permutation
Hi hazmah, Is this what you're looking for? Axes_name = string({'sint0.2';'sint0.5';'sint0.7'}) fold_2 = string({'BCA';'BPCA'...

4年弱 前 | 0

回答済み
Visualising symbols inside the tranfer fcn block in Simulink
Make the Transfer Fcn block a little bit bigger by selecting it and stretching it with the mouse.

4年弱 前 | 0

| 採用済み

回答済み
get specific magnitude response value given a specific frequency from a freqz graph
freqz accepts a third argument that allows the user to specify the desired angular frequencies to evaluate (it must have at leas...

4年弱 前 | 0

回答済み
Why I get two different covariance matrix?
Hi Ali, Perhaps Prof. Ng has some additional assumptions about the data that aren't included in your question. To compute the c...

4年弱 前 | 1

| 採用済み

回答済み
Viewing .slx model figue without Simulink
Can you use Simulink Online ?

4年弱 前 | 0

回答済み
Is it possible to solve multiple linear systems of equations in parallel with one matrix operation?
Hi Bill, pagemldivide introduced in 2022a can do the trick. Whether or not this is really better than the loop .... Aa = [ 0.8...

4年弱 前 | 0

| 採用済み

回答済み
I should convolve my signal with which function to have the signal itself?
Hi Donya, dirac is only defined in the Symbolic Math Toolbox and so should only be used for symbolic math, and only for continu...

4年弱 前 | 0

回答済み
Error when taking the continuous time Fourier transform
Using some examle data ... A = 1:5; std_A = 11:15; syms t w real f(t) = sum(exp(-t./A))*heaviside(t) std_ft(t) = sqrt(sum((...

4年弱 前 | 0

| 採用済み

回答済み
How to model second order nonliniar in simulink
Hi Barak Bar-on, I depends on the form of the matrices and what you consider easy. If you already have a .m function in Matlab...

4年弱 前 | 0

回答済み
how to load this function into simulink
Hi arsal Though not required, you can replace the function making_values_input with a Mux block. Double click on predictActivi...

4年弱 前 | 0

回答済み
Applying an anti-aliasing filter
I think all that we are seeing is the effect of sampling the contiuous signal, nothing to do with aliasing. Let's look at just ...

4年弱 前 | 0

| 採用済み

回答済み
How to calculate the 95% (area under the curve) of Kernel probability density curve?
The function icdf can find the values of x such that P(X < x) = 0.05 and 0.95. Use those values with xline to add the vertical ...

4年弱 前 | 0

| 採用済み

回答済み
How to transfer output from simulink into m-file in real time
Asusming the loop only needs the output of the simulation after the simulation completes ... Use the sim command.

4年弱 前 | 0

回答済み
Using the lowpass function
The only way to suppress the plot output is to specify at least one output argument (or use lowpass() in an expression, like 1*l...

4年弱 前 | 0

回答済み
looking for a way to find the largest input from 10 signals in simulink
How about the MinMax block?

4年弱 前 | 0

| 採用済み

回答済み
FFT giving undesired answer
Hi Cole, As you've already accepted an answer, perhaps you already have what you need. But I thought it might be helpful to add...

約4年 前 | 0

回答済み
How to use Convolution in Simulink?
I think this model does what you're looking for. Here is the model that uses the convolution sum to approximate the convolution...

約4年 前 | 0

回答済み
Sensitivity analysis in simulink
This page might be of interest.

約4年 前 | 0

回答済み
Compute Probability of a Multivariate Normal Distribution over Polytope
Hi Michael, If A is nonsingular, perhaps a change of coordinates will work % z = A*x muz = A*mux; Sigmaz = A*Sigmax*A.'; Pr...

約4年 前 | 0

回答済み
Warning: Imaginary parts of complex X and/or Y arguments ignored.
Hi Matthew, Why is dhdt the output argument of this line? [t, dhdt] = ode45(@thesis, tspan, [240]); Shouldn't this be [t, h]...

約4年 前 | 1

| 採用済み

回答済み
how to inverse transfer function simulink
Hi Stanley. First off you'll need to factor out the exp(-s) and implement that with a Transport Delay block. For the non-prope...

約4年 前 | 0

回答済み
Transformation of state space model
It sounds like the Question is about forming a feedback loop. In this case use feedback.

約4年 前 | 0

回答済み
How to do Feedback Loop on Simulink with different frequinces
I'm assuming the question is how to run the same simulation multiple times for different frequencies. With this assumption .... ...

約4年 前 | 2

回答済み
How to generate all possible vectors where each element can take one of two values
a = [1 2 3]; b = [4 5 6]; n = numel(a); C = mat2cell([a; b],2,ones(1,n)); [D{1:n}] = ndgrid(C{:}); E = sortrows(cell2mat(...

約4年 前 | 0

| 採用済み

回答済み
how to find the right frequency axis when we take the Fourier transform of a function?
Hi Donya, By default, the frequency variable for fourier in the Symbolic Math Toolbox is in rad/sec. Also, Matlab definition o...

約4年 前 | 2

| 採用済み

回答済み
Pade approximant in Transport delay block
What exactly is the confusion? Increasing the order of the Pade approximant should have no effect on simulation run time or sim...

約4年 前 | 0

| 採用済み

回答済み
Discrete values in DFT
Hi Sahil, In general: Let x(t) be a continuous-time signal, i.e., where the inedpendent variable, t, is any real number with -...

約4年 前 | 1

| 採用済み

回答済み
matlabFunction() generating intermediate terms that place the integrand outside integral()
A couple of suggestions on the code. As a general rule IMO, it's best to specify all relevant assumptions on the variables. For...

約4年 前 | 1

| 採用済み

回答済み
help in runge kutta 4 2nd order with establishing the functions
Ok. Let y1 = q and let y2 = qdot (or y2 = q and y1 = qdot if preferred) Then the first equation we need is y1dot = qdot = y2. ...

約4年 前 | 0

回答済み
How to change from scientific form to decimal form using continuous and discrete transfer functions?
Hi Edward, It would be immensely helpful to show a simple example with an actual result and explain what the preferred result w...

約4年 前 | 1

| 採用済み

さらに読み込む