답변 있음
The problem is to obtain the eigen einergies of the Schrodinger equation for an array of l = 0:1: 5 and del = linspace(0,1,N)
hbar = 1; mu = 1;e = 1;De = 1;re = 1;alp = 0.01;N = 100; l = 0; del = 0; L = l.*(l+1); r = linspace(1,1.2,N);dr = r(2)-r(1); ...

2년 초과 전 | 0

답변 있음
How do we choose matrices in state feedback control?
Hi Luc, For lqr, the B matrix multiplies the control input. As I don't know what the variables mean in your problem, I can only...

2년 초과 전 | 1

| 수락됨

답변 있음
Why am I getting this error "Conversion to logical from sym is not possible." in line 18?
syms x syms y %f(x,y) = input("Enter the function of f(x,y): "); f(x,y) = x^4 + y^4 -2*x^2 + 4*x*y - 2*y^2; df_dx = diff(f(x...

2년 초과 전 | 0

| 수락됨

답변 있음
Reducing symbolic expressions with assumptions, but NOT simplify?
Hi Aroni, Consider the simple expression syms x f(x) = sin(x)/sqrt(1-cos(x)^2) Simplify simplify(f) If we assume that x is...

2년 초과 전 | 0

| 수락됨

답변 있음
I got error with "error using plot, vectors must be the same length"
Hi Tran, Next time, please copy/paste your code into the Question, which makes it much easier for people to help. Original cod...

2년 초과 전 | 0

답변 있음
Jumps in signal connections - simulink
Hi Tobias, From the Matlab window: Click Preferences in the Environment ribbon. Select Simulink in the preferences window. C...

2년 초과 전 | 0

| 수락됨

답변 있음
I need to put this block diagram in MATLAB (not in Simulink) and I do not know how to do it
Hi Carlos, Recheck the definiton of s2. Once you have that taken care of, I suggest you proceed with connect.

2년 초과 전 | 0

답변 있음
I don't know how to introduce the block (s+6) in simulink
Hi Carlos, One option would be to use block diagram manipulation. For example (there is at least one other approach): a) chang...

2년 초과 전 | 0

| 수락됨

답변 있음
Valid Shape FFT Deconvolution
Hi Benjamin, Here's an approach for the 'valid' convolution. Problem parameters: x = 1:7; nx = numel(x); h = 1:3; nh = numel...

2년 초과 전 | 0

| 수락됨

답변 있음
Simulink - Saving Base Workspace Variables
One option is to use the Model Workspace: "Each model is provided with its own workspace for storing variable values."

2년 초과 전 | 1

답변 있음
Matrices size difference within for loop and unable to perform assignment of elements
Hi mcp0228, The loop variable iNepochs will be a scalar value, hence the LHS of the assignment is a column vector. for iN...

2년 초과 전 | 0

답변 있음
Why is Symbolic Math Toolbox Giving Decimal Answers?
Check your sympref The defaults are sympref Resulting in [sym(pi) sym(sqrt(3))] But, if you change this pref sympref('Floa...

2년 초과 전 | 0

| 수락됨

답변 있음
Change content of Simulink Matlab Function block through console
Use MATLABFunctionConfiguration and modify the FunctionScript property.

2년 초과 전 | 0

질문


Can the Symbolic Math Toolbox Be Used to Prove Matrix Identities?
With the following defintions syms s A = symmatrix('A',3); B = symmatrix('B',[3 1]); C = symmatrix('C',[1 3]); L = symmatri...

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

1

답변

답변 있음
getLoopTransfer is giving the same open loop transfer functions for two different systems
Hi Janki, I'd have to go through the math on the two calls to getLoopTransfer to determine if that result makes sense. Offhand,...

2년 초과 전 | 1

| 수락됨

답변 있음
using hasSymType(expression, 'constants') returns true when no constants
Hi Andrew, Both of those examples seem to be in accordance with doc hasSymType and children, except that children returns a cel...

2년 초과 전 | 0

| 수락됨

답변 있음
Can't get symbolic numbers.
Hi Austin, Seems to work here as you expect. sym(1/5) sym(1/5,'r') But the preceeding results are based on the default sympr...

2년 초과 전 | 1

답변 있음
FFT is shifting my artificial signal?
Hi Zach, a) create the X vector with spacing based on the sampling frequency, Fs b) create the wave vector with sinusoids comp...

2년 초과 전 | 0

| 수락됨

답변 있음
Assigning certain seed value to Simulink Uniform Random Number block in programmatic way
Hi JW, That looks like a typographical error in the doc (which is odd, I've always imagined stuff like that is generated automa...

2년 초과 전 | 0

| 수락됨

답변 있음
Number of filter taps in Gaussian filter design
Hi Jay, The doc page for gaussdesign states "The number of symbols between the start and end of the impulse (span) and the num...

2년 초과 전 | 0

| 수락됨

답변 있음
Inconsistency between the FFT results and the analytic spectrum of a Gaussian function
Hi Sherwin, fft assumes the input sequence starts at k = 0, so we have to apply ifftshift on the input to fft. fs = 10; t = -...

2년 초과 전 | 1

| 수락됨

답변 있음
How to plug x^2+y^2 in to euler's Method
Hi Michael, Focusing only on the error message ... this line is the source of the error f(i) = x.^(2).*(i)+y.^(2).*(i); ...

2년 초과 전 | 0

답변 있음
Solving symbolic third order polynomial
Hi Axel, What is the source for the equations in red? Here is Matlab's solution: syms q(t) a0 a1 a2 a3 q0 q1 dq0 dq1 t0 t1; ...

2년 초과 전 | 0

답변 있음
How to identify transfer function of a motor with IODelay?
Hi Erik, Here's what I tried: Load the data load forum.mat Run the script so I can operate on the same variables. Take note ...

2년 초과 전 | 1

| 수락됨

답변 있음
Solving symbolically for variables that are equal to several equations
Hmm. Don't know why solve doesn't find a solution, syms xi v r a mu spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)] solve(s...

2년 초과 전 | 0

답변 있음
I am trying to get my function to return two variables to the workspace. It is a very simple function. What am I doing wrong.
If you want both outputs returned, use ouput arguments on the call [m,n] = save_13(1,2) When you call a function without outpu...

2년 초과 전 | 0

답변 있음
Simulink - output of a block as an another block parameter
Hi Wiktor, Some Simulink blocks have parameters that can be specified either internally or externally, such as the Integrator b...

2년 초과 전 | 0

답변 있음
Hello, I want to use the LPC function to achieve AR pre-whitening, will the AR coefficient obtained by fftfilt filtering signal is a residual signal?
Hello Yx Y, Based only on reading the lpc example, it would seem that the call to fftfilt should be xest = fftfilt([0 -a(2:end...

2년 초과 전 | 0

| 수락됨

답변 있음
Using Fourier Series write a MATLAB function to synthesize the wave-form in problem (2-19), Assume A = 4mV. Your function should take n ( # of harmonics ) and produce a plot
Hi Evan First, check your code that defines one period of v(t). It''s probably easier to define v(t) using piecewise syms t T...

2년 초과 전 | 0

답변 있음
Use of syms, piecewise & conv commands
Hi Ben, First you have to decide if you want to solve the problem for a closed form expression using symbolic tools, like syms ...

2년 초과 전 | 0

| 수락됨

더 보기