Community Profile

photo

M


Last seen: environ un an il y a Actif depuis 2017

Statistiques

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

Afficher les badges

Content Feed

Afficher par

A répondu
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...

environ un an il y a | 0

A répondu
the responses of 2d systems
You can create descriptor state-space systems with dss function and then plot results with stepplot or intial functions.

plus de 3 ans il y a | 0

A répondu
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...

plus de 3 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 1

| A accepté

A répondu
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...

presque 4 ans il y a | 0

A répondu
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-...

presque 4 ans il y a | 0

| A accepté

A répondu
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...

presque 4 ans il y a | 0

A répondu
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...

presque 4 ans il y a | 0

A répondu
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.

environ 4 ans il y a | 0

A répondu
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...

environ 4 ans il y a | 0

A répondu
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...

environ 4 ans il y a | 0

| A accepté

A répondu
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,...

environ 4 ans il y a | 0

| A accepté

A répondu
MATLAB R2019A
Here: https://www.mathworks.com/pricing-licensing.html?prodcode=ML&intendeduse=student

environ 4 ans il y a | 0

A répondu
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,...

environ 4 ans il y a | 0

| A accepté

A répondu
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]...

environ 4 ans il y a | 1

A répondu
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 ...

environ 4 ans il y a | 1

| A accepté

A répondu
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 ...

environ 4 ans il y a | 0

A répondu
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 =...

environ 4 ans il y a | 0

| A accepté

A répondu
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-...

environ 4 ans il y a | 0

A répondu
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...

environ 4 ans il y a | 0

| A accepté

A répondu
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...

environ 4 ans il y a | 0

| A accepté

A répondu
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.

environ 4 ans il y a | 0

A répondu
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:...

plus de 4 ans il y a | 2

A répondu
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...

plus de 4 ans il y a | 1

| A accepté

A répondu
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...

plus de 4 ans il y a | 13

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

| A accepté

A répondu
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...

plus de 4 ans il y a | 0

Charger plus