Respondida
can program tell if SISO or MIMO
Your code looks correct for determining whether or not a system is SISO G1 = tf([2 0], [1 2]); G2 = tf([1 -1], [1 6 15]); sys...

más de 3 años hace | 0

Respondida
How do I assign a 1x 50 cell array to a struct Scalar structure required for this assignment
Hi Ted, Assuming you want to assign the scalar content of each cell in the cell array a new field in the struct, is this what y...

más de 3 años hace | 0

Respondida
FFT error 'not supported to carry out script fft as a function'
Hi 柊介 小山内, fourier can return a closed form expression with a little help. syms t w f real T = sym(5.0)*10^(-10); roll = sym...

más de 3 años hace | 1

| aceptada

Respondida
Asking about the ''delayss'' function in matlab
Hi Mohamed, Not sure if this answers your question, but ... The state space matrices shown in the output after using delayss a...

más de 3 años hace | 0

| aceptada

Respondida
strange solution of an equation by Symbolic Toolbox
This is interesting. Don't understand why solve appears to be using the 12th root in its solution, looks like it should be the 8...

más de 3 años hace | 0

| aceptada

Respondida
Error using sym/subsindex when doing convolution of two signals (cosine function and impulse function) in MATLAB.
As written, h is Stem object. However, to use int, h(t) needs to be defined as a symbolic function of t (in the same manner as x...

más de 3 años hace | 0

| aceptada

Respondida
Find unique column values in NxN cell array
Because the resulting variables could all have a different number of elements, I'm converting each variable into a scalar cell t...

más de 3 años hace | 0

Respondida
Interpolation of cross-correlation from zero padded idft of power spectrum shows odd behavior
Hi matt, I think the issue is with how the padding is being done. See code below for that and other questions. Full disclosure:...

más de 3 años hace | 0

| aceptada

Respondida
how to plot a periodic function?
Hi Zafer, To compute the Fourier series, you really only need to define one period of the function, because the defining integr...

más de 3 años hace | 0

| aceptada

Respondida
How to get z transfer function from difference equation?
Hi Vivianne, One workflow would go like this: Define the variables and signals. Note that x is a function of k syms y(k) z x(...

más de 3 años hace | 0

Respondida
Sliding mode control simulink
Hi KAI, Do any of the integrators have a non-zero initial condition? Also, might want to consider using a variable step solver...

más de 3 años hace | 0

| aceptada

Respondida
Having symbolic in a Matrix
Hi Felis, I didn't run the code because I don't know what inputs to provide. Does changing Z2 to a sym object solve the problem...

más de 3 años hace | 0

| aceptada

Respondida
Find a specific characters in a string
Hi Miriam I'm not quite sure what you're looking for. However, transforming everything to strings might offer a path forward vi...

más de 3 años hace | 0

Respondida
How to find index of string inside a structure of cell arrays
Hi Andrew, Is this what you're looking for? load(websave('MyStruct.mat','https://www.mathworks.com/matlabcentral/answers/uploa...

más de 3 años hace | 0

| aceptada

Respondida
Display Block shows truncated data
Hi Gajana, The warning is not telling the full story and may actually be incorrect. Fron the Display block doc page: "The Disp...

más de 3 años hace | 0

Respondida
How to find number of input and output ports of an unknown simulink model ?
Hi Shiv, I started out with this model with three subsystems. Then I ran this code: % Handles to the subsystems subsystems...

más de 3 años hace | 2

| aceptada

Respondida
How to find cumulative distribution function from a given data set(vector)
Hi Shankul, I'm not sure what "I want the cdf vector" means. If that means the data that forms the cdf plot on the graph, then ...

más de 3 años hace | 0

| aceptada

Respondida
Problem passing sine wave through if statement
Hi Matthew, The "Port 1" referenced in the error message is the first output port, not the input port. All output ports from th...

más de 3 años hace | 0

| aceptada

Respondida
What is the physical interpretation of sos in Zp2sos function?
Hi Andi, Addresing the second part of your question: " why we need to do this" filtfilt will accept either transfer function (...

más de 3 años hace | 0

Respondida
why does my data kick up at the end after doing ifft(X)
Hi Joanne It will be easier for people to help if you post the data. Use the paper clip icon to attach it to your question as a...

más de 3 años hace | 0

Respondida
How to vectorize a complex function?
Hi Babak, Here is a one line solution. Whether or not it's more efficient/effective/clearer than the loop is an open question. ...

más de 3 años hace | 0

Respondida
Reduce length of sum of products of symbolic variables
Hi Moritz, Would you mind explaining why it's necessary to get the expression into a particular form? Recreating the expressio...

más de 3 años hace | 0

| aceptada

Respondida
Not able to use the if condition as desired in simulink
The outputs of an If block can only drive If-Action subsystems. At a minimum, the limiter blocks need to be wrapped inside If-Ac...

más de 3 años hace | 0

Respondida
Plotting the frequency response of a bandpass filter around a frequency fc
The code as implemented uses the form of freqz with the w input in normalized frequency in units of rad. The w vector on input r...

más de 3 años hace | 1

| aceptada

Respondida
How do I use methods from a class that works in matlab and use it in simulink?
How will the object instances be used in Simulink? This blog post and its follow-ups may be of interest.

más de 3 años hace | 0

| aceptada

Respondida
Is there a zpk block in simscape?
Zero-pole-gain block in Simulink, don't know if there is a specialized or alternate version in Simscape.

más de 3 años hace | 1

| aceptada

Respondida
Offset in filtered data when using filtfilt() Function
Thanks @Jan The filter, d, does not have unity gain at dc. fc = 0.4; d = designfilt("lowpassfir", 'PassbandFrequency', fc, 'S...

más de 3 años hace | 1

Respondida
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...

más de 3 años hace | 1

| aceptada

Respondida
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 ...

más de 3 años hace | 1

| aceptada

Respondida
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...

más de 3 años hace | 1

Cargar más