답변 있음
Bessel filter analog to digital
Hi Maurizio, freqs returns the frequency vector, wb, in units of rad/sec. freqz, as used below, returns the frequency vector, ...

2년 초과 전 | 1

답변 있음
Conditionally executed functions in Simulink
A Triggered Subsystem may fit the bill. More generally, check Conditionally Executed Subsystems for more discussion.

2년 초과 전 | 0

답변 있음
how to preferentially compute vector products rather than matrix products
"Is there any way to change this setting without bracket?" No. From the doc page for Operator Precedence: "Within each preceden...

2년 초과 전 | 0

답변 있음
inverse Laplace transform in simulink
The Matlab Function block does not support any symbolic operations, as far as I know. I think the best you can do is structure t...

2년 초과 전 | 0

답변 있음
Functions specgram and spectrogram - what does the spectogram' 3rd dimension mean and what unit it has?
Hi Peter, Until I read this question, I had never really thought about the outputs of spectrogram in an absolute sense. I only ...

2년 초과 전 | 1

답변 있음
One of the systems I want to control includes disturbances in the input matrix. How can I convert this state space equation into a transfer function?
Combine u and d into a single input vector. Then the "B" matrix is composed of the Bbar and Ebar matrices concatenated together ...

2년 초과 전 | 1

| 수락됨

답변 있음
Hello: i want to give a step input to my simulink function which starts at 1 second and ends at 1.1 seconds and having an amplitude of 0.1. Step block not working
Try using the Waveform Generator block with Waveform Definition parameter set to pulse with appropriate parameters. However, the...

2년 초과 전 | 0

| 수락됨

답변 있음
why lsim return empty states?
According to the lsim doc page, the output x is returned when the input sys is a state-space model. The doc page further distin...

2년 초과 전 | 0

| 수락됨

답변 있음
create a new array with group sum
Check out splitapply

2년 초과 전 | 0

답변 있음
Incorrect number or types of inputs or outputs for function 'step'
Hi Archit, It would be much easier to help if you copy/paste the actual code into the Question rather than a large screen captu...

2년 초과 전 | 0

답변 있음
ss2tf taking too long
Which version of ss2tf are you using? The one that ships with Matlab which -all ss2tf doesn't support sym inputs syms a b c d...

2년 초과 전 | 0

| 수락됨

답변 있음
logging data from Simulink to workspace
Hi Asmaa, Because the signals are already in the simulation, why would there be a need to send them from Simulink to Matlab onl...

2년 초과 전 | 0

답변 있음
Assistance with Transfer Function Output
The second input to lsim, called 'input' in the code, has to be a vector (becuase Hd is single input) of numerical values. So yo...

2년 초과 전 | 0

| 수락됨

답변 있음
How to extract coefficients of custom variables in symbolic expression in MATLAB?
syms psi phi theta i_B j_B k_B psi_dot phi_dot theta_dot omega_B = (phi_dot - psi_dot*sin(theta))*i_B + (theta_dot*cos(phi) + p...

2년 초과 전 | 0

| 수락됨

답변 있음
Discrepancy in PI Controller Outputs for voltage control and current control for droop control strategy in MATLAB
With regard to this part of the code: % //PI controller for Vd error_vd(n)=((sqrt(2))*Vd_ref(n))-(V1d(n-1)); ...

2년 초과 전 | 0

답변 있음
We have table,Why we use timetable?
It looks like timetables offer additional functionality helpful for dealing with time histories of data: Timetables

2년 초과 전 | 1

| 수락됨

답변 있음
creating cell array using find command
Hi Amit, Just need to prepend the index vector to keep the first column. rng(100) analysisdataacd3 = num2cell(randi(3000, 10,...

2년 초과 전 | 0

답변 있음
Receiving an error when using interp2 to interpolate longitude and latitude (Error using griddedInterpolant Grid arrays must have NDGRID structure.).
lon = xlsread('lon.xlsx') ; lat = xlsread('lat.xlsx') ; elevation = xlsread('elevation.xlsx') ; interp2 requires matrix input...

2년 초과 전 | 0

답변 있음
PID Controller in Simulink question
Set the 'Source' parameter to 'external' as in doc for PID block. The you can calculate the gains external to the block as funct...

2년 초과 전 | 1

| 수락됨

답변 있음
Problem in filtering my desired frequency
Hi Abdullah, A couple of issues to address in the anlaysis. I think you started by trying to define an ideal filter in the fre...

2년 초과 전 | 0

| 수락됨

답변 있음
Problems in dynamic symsum variables in solving a system of equation
Hi Tsz Tsun, Why not just use regular sum instead of symsum when the goal is to just take the sum of a finite number of terms? ...

2년 초과 전 | 2

| 수락됨

답변 있음
Problem in plotting the convolution
Hi Abdullah, Although not stated explicitly in the Question, I'm going to assume that a) the objective is compute the convolut...

2년 초과 전 | 0

답변 있음
how to interpolate stepfunctionresponse
Hi Hassen, I don't undertstand how the matrix i fits into the problem, and I assume that one column of the Matrix is a time vec...

2년 초과 전 | 0

질문


Is there a way to Rewrite a Symbolic Expression in Terms of nthroot?
Suppose I have a symbolic expression syms x real g = x^(1/3) - 1 I'd like to evaluate g for negative values of x, either symb...

2년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
get x knowing f(x)
finverse works well in this case. syms f(x) y f(x) = exp(x); g(y) = subs(finverse(f),x,y) g(23)

2년 초과 전 | 0

답변 있음
acker(): "Error using sym/poly". Why?
Hi John, A = [0 1; -4e5 -400]; B = [0; 4e5]; C = [1 0]; Aaug = [A, zeros(2,1); -C, 0]; Baug = [B; 0]; H = 1.0e+12 *...

2년 초과 전 | 1

| 수락됨

질문


What are Your Thoughts on TMW Documentation Linking to the File Exchange
Kind of similar to this Question, I noticed that the Tips section of integral3 cites this File Exchange submission as an option ...

2년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
Why am I getting different frequency responses for the same filter using bode() and fvtool()?
Hi Rinitha, Here is the design of the low pass filter fs = 500; % Sampling frequency Ts = 1/fs; fc = 100; % Cutoff frequency...

2년 초과 전 | 2

| 수락됨

답변 있음
Reference Frame for Forces Going into 6DOF (Euler Angles)
According to 6DOF (Euler Angles), the force inputs are the components of the net force resolved in Body Coordinates. If the "Z d...

2년 초과 전 | 0

| 수락됨

질문


What are the Pros and Cons of the RandStream Transformation Algorithms?
RandStream objects offer three choices for the transformation algorithm for computing standard normal random variates as shown o...

2년 초과 전 | 답변 수: 1 | 0

1

답변

더 보기