Community Profile

photo

M


Last seen: 約1年 前 2017 年からアクティブ

統計

All
  • Thankful Level 2
  • 24 Month Streak
  • First Review
  • Matrix Manipulation I Master
  • Knowledgeable Level 4
  • Revival Level 2
  • Commenter
  • Promoter
  • Solver
  • Thankful Level 1
  • First Answer

バッジを表示

Content Feed

表示方法

回答済み
Orthogonality by Singular value decomposition "svd"
Could you be more specific ? The svd function outputs orthogonal matrices such that: [U,S,V] = svd(X); with , i.e. The column...

約1年 前 | 0

回答済み
the responses of 2d systems
You can create descriptor state-space systems with dss function and then plot results with stepplot or intial functions.

3年以上 前 | 0

回答済み
Solve ill-condition matrix
Does it display this warning but still solve the equation ? How are the results ? You can also try : x = A\B . It solves the sy...

3年以上 前 | 0

回答済み
How do you extract the state space model from ssest()?
sys1 is a discrete-time state space model. If you want to compare the results with sys2, replace your code with: %% Extract th...

4年弱 前 | 1

| 採用済み

回答済み
Tolerance, correct digits
If the tolerane is 5E5 what does it actually means ? It depends... Can you provide the code ? And a little context so that w...

4年弱 前 | 0

回答済み
Can i get a value of ρ with matlab?
Do you have symbolic tooblox ? If yes, you can have a look here: https://fr.mathworks.com/matlabcentral/answers/46003-solving-...

4年弱 前 | 0

| 採用済み

回答済み
How can i replace the value of A(x) in the function defined in "f1"...
You can have a look here to know how to create if / else conditions: https://mathworks.com/help/matlab/ref/if.html Then you sh...

4年弱 前 | 0

回答済み
Unrecognized function or variable x
As the error message says, the variable 'x' is not declared before it is used line 7. How do you execute this function ? Is i...

4年弱 前 | 0

回答済み
MIMO control system with marginally stable poles at the origin
How do you test the pole zero locations ? Here, you have a pole equal to 0.

約4年 前 | 0

回答済み
Determine suitable control gain for the controller
Well, this is a vague question... To tune the gain you either need a model of your system and do some calculations, or if you d...

約4年 前 | 0

回答済み
How to save indices of a certain region of a matrix
I am not sure if I understood your question but here is a second simple example: A = [10 11 12;13 14 15; 16 17 18]; B = [14 15...

約4年 前 | 0

| 採用済み

回答済み
i would like to create a randi function that will allow me to generate two arguments at one
Suppose you have a n by n matrix: n = 5; T = magic(n); You can access a random cell in this matrix by using: c = randi(n,[1,...

約4年 前 | 0

| 採用済み

回答済み
MATLAB R2019A
Here: https://www.mathworks.com/pricing-licensing.html?prodcode=ML&intendeduse=student

約4年 前 | 0

回答済み
i m getting 'subscript assignment dimension mismatch' in my code in 'line 18'
You have a problem of dimensions at line 18: pilotdata(p,J)=Mod(p,k); At the first iteration, it holds: p = 1,...

約4年 前 | 0

| 採用済み

回答済み
Constrained Global Optimization Problem with MultiStart, GA and HybridFunction using Parallel Processing whithout Ste
Update your code like this: A=rand(2,2); B=[1 ;0]; n = length (A); Com = B; for x = 1: n-1 Com = [Com, (A ^ (x)) * B]...

約4年 前 | 1

回答済み
How can I work on a valuable name with a minus sign in it...?
From this documentation: https://mathworks.com/help/matlab/matlab_prog/variable-names.html "valid variable name starts with a ...

約4年 前 | 1

| 採用済み

回答済み
I don't get the correct output from my function
When you change from -5 to -10, the absissa of the plots change, yes. But the value of the function does not change. What makes ...

約4年 前 | 0

回答済み
How do I get my function to return a numerical value?
The function HW5VJ0 returns a function handle. To get a numerical value, you have to call it with the specified value of x: x =...

約4年 前 | 0

| 採用済み

回答済み
How to make a 3D plot of 41x41x41 datapoints
You can have a look here to see different solutions to plot data in 3D: https://mathworks.com/help/matlab/visualize/creating-3-...

約4年 前 | 0

回答済み
I want to apply bubble sort
bubblesort is defined such that it takes only one input (the table to sort). And you call it with two inputs : A=bubbleSort(A,9...

約4年 前 | 0

| 採用済み

回答済み
Obtaining result from a previous point
Have a look here: https://mathworks.com/help/matlab/matlab_prog/loop-control-statements.html https://mathworks.com/help/matlab...

約4年 前 | 0

| 採用済み

回答済み
symbolic system of equation
First problems on lines 2 to 4: gamma=sym(zeros(i,1)); w=sym(zeros(i,1)); l=sym(zeros(i,1)); i is not yet defined.

約4年 前 | 0

回答済み
What is the difference between the fixed point and floating point modeling in simulink ?
Have a look at these documentations : https://mathworks.com/help/comm/ug/floating-point-and-fixed-point-data-types.html https:...

4年以上 前 | 2

回答済み
select from matrix!
When executing the command it outputs : b = 3 2 2 1 The command : b= [a(1,2:3);a(2,1:2)] sel...

4年以上 前 | 1

| 採用済み

回答済み
plot standard deviation as a shaded area
You can use the code directly from this answer: https://mathworks.com/matlabcentral/answers/180829-shade-area-between-graphs#an...

4年以上 前 | 13

回答済み
How to make a array from a loop?
You can do something like: nb = 1440; j = zeros(1,nb); Z = zeros(1,nb); for i = 1 : nb Z(i) = powerConsumption(i) - sol...

4年以上 前 | 0

回答済み
System unit-impulse response for given tau
There is a problem of dimensions for matrix multiplication at line 5 and 6 : x1 = (A/tau1)*exp(t/-tau1) x2 = (A/tau2)*exp(t/-t...

4年以上 前 | 0

回答済み
When we use the ";" at the end of a command line and when we do not use it
From https://www.tutorialspoint.com/matlab/matlab_syntax.htm : Semicolon (;) indicates end of statement. However, if you want t...

4年以上 前 | 0

回答済み
adding element to a matrix row
You can read this to know about matrix indexing: https://www.mathworks.com/company/newsletters/articles/matrix-indexing-in-matl...

4年以上 前 | 0

| 採用済み

回答済み
Control of inverted pendulum
I don't find anything similar in literature LQR algorithm with state estimator is very common and you can find plenty of exampl...

4年以上 前 | 0

さらに読み込む