Réponse apportée
How to solve an ODE in Simulink with non constant coefficients?
Use a Clock block from the Sources library to output the simulation time (t).

presque 5 ans il y a | 0

Réponse apportée
How to get the coefficients of a fractional polynomial from syms?
If I correctly understand this comment (and I'm not sure I do), it sounds like you just want the coefficients of the numerator o...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
How can I get the correct spectral phase variations of a super gaussian pulse?
The posted code doesn't run. The frequency vector f is defined in terms of numel(X), but X isn't defined yet. I thing that intr...

presque 5 ans il y a | 0

Réponse apportée
using of ss2tf command
In my opinion, that statement in the documentation doesn't make sense. It should say "... returns the Laplace transform of the ...

presque 5 ans il y a | 1

| A accepté

Réponse apportée
Simulating Gamma distributed RV's using Matlab
For starters, probably shouldn't use inline. Use an anonymous function instead. And I'm going to change the variables involved ...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
what is root of a equation in s(laplace domain) in response of ilapalace means
If ilaplace can't find a closed form expression it returns the result in terms of "root," which can then be evaluated numericall...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
How to obtain FFT of nonuniformly spaced data?
You can try using the tspan input to od15i to specify equally spaced sample points in time at which the solution is desired. Che...

presque 5 ans il y a | 1

| A accepté

Réponse apportée
Different frequency responses using [z,p,k] method and [b,a] for 2nd order elliptical filter
If fvtool is like freqz, you need to make sure that the sos input has more than one row. Otherwise, the input might not be inter...

presque 5 ans il y a | 1

Réponse apportée
how to change line colors in bodes, nichols, nyquist, etc
I tested stepplot and bodeplot and am seeing the same thing as you, i.e., if more than 7 responses, then multiple responses are ...

presque 5 ans il y a | 0

Réponse apportée
Does order of multiplication really matter when using simplify ?
I suspect that in the first instance the term 1/(2*pi) is first evaluated numerically, and then the result in coverted to symbol...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Problem with mvncdf - returning NaN
The limits of area of integration defined in xl and xu are way, way, out in the tails of the density function, which may be why ...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
how to do symbolic type negation ?
Accoding to the doc page for assume(), maybe assume(~in(x,'integer')) will do what you want? I couldn't test it because my ve...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to Find out the port/signal name which is connected to a particular input in a block
Can be done in two steps: signals = get_param(block,'InputSignalNames'); signals{double(string(get_param(block,'Port')))} whe...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Plotting the absolute value.
plot(abs(Fx))

environ 5 ans il y a | 0

| A accepté

Réponse apportée
what are the name of the two components in simulink
The one at the top looks like Bus Selector The one at the bottom is Add You can always right click on a block and click Help t...

environ 5 ans il y a | 0

Réponse apportée
CDF of log pearson
Not familiar with the disribution, but can offer the following about this code: % data Q=[23.81 33.98 62.01 140.45 184.91 ...

environ 5 ans il y a | 0

| A accepté

Question


Why Does int() of rectangularPulse Return NaN?
syms t real x(t) = rectangularPulse(0,1,t); int(x(t),t,0,5) int(x(t),t,0,inf) int(x(t),t,-10,10) int(x(t),t,-inf,inf) Any ...

environ 5 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
To Get Correct FFT Result the length(x) must be An Integral Multiple of 100?
The desired plot will be obtained when N, the number of elements of t, is an integer multiple of the ratios Fs/Fn, where Fs is t...

environ 5 ans il y a | 2

| A accepté

Réponse apportée
How to vectorize this for loop
For starters, why use symsum at all? Doesn't sum() do exactly what is needed? for t = 1:12054 k = 0:(12054 - t); L(t)...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Bode Plot's Phase Margin Decimal Precision
If you just want the actual phase (and other) margin to more accuracy and don't care about the pop-up data tip, use doc allmarg...

environ 5 ans il y a | 0

Réponse apportée
vector direction calculation in order to remove impact of magnitude
I think you want something like this: mag = sqrt(u.^2 + v.^2); newu = u./mag; newv = v./mag; % now use newu and newv as inpu...

environ 5 ans il y a | 0

Réponse apportée
How to model and simulate large nonlinear coupled mechanical systems effectively?
I think steps 2 and 3 can be replaced with: doc odeToVectorField If not, post a simple example to illustrate the problem.

environ 5 ans il y a | 0

Réponse apportée
Very small u control values in LQR initial response
For this dicussion, I'm going to just use x and u as the symbols for the state and control variables of the linearized model, in...

environ 5 ans il y a | 0

| A accepté

Question


Is There a Way to Find all Shadowed Functions on the matlabpath?
I'm dealing with a code base of m-files all in one folder and sub-folders. I'm worried that different sub-folders contain files...

environ 5 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How to solve intergal for analytical form of ambiguity function
I was not able to get Matlab to return a solution in the expected form of the answer. But we can show that Matlab's solution is ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to determine if a signal in Simulink is within upper and lower limit bounds over a specified number of samples?
I'm going to assume that the signal in question is already sampled. Here's one approach. There are others. Input the signal to...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to define the order of states and inputs of a state space model in Model Linearizer
If using the linearize() function, the inputs and outputs will be in the order specified in the io argument. The state ordering...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Is there a better method to plot the inverse Laplace of a function?
The copy/paste approach shouldn't be needed. For many functions, fplot() usually does the trick: syms s t U(s)=1/(s+1); u(t)...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Why a function can't get itself in Simulink after two consecutive differentiation and two integration operations?
For the top (continuous) branch, keep in mind that the Derivative block is a numerical approximation and it's output will be ver...

environ 5 ans il y a | 1

| A accepté

Question


Should Behavior of sub2ind() be Different for Symbolic and Numeric Inputs?
maxrows = 1; r = 1; a = 1; c = 1; ii = false; D = zeros(3,3,maxrows) % D is a double D(sub2ind([3,3,maxrows],a(ii),a(ii),r(ii)...

environ 5 ans il y a | 1 réponse | 0

1

réponse

Charger plus