Answered
How could we rescale the step response of MIMO state space model system?.
The system you have mentioned is fully controllable as the controllability matrix has full rank. By 'rescaling' I assume you wan...

6 years ago | 0

| accepted

Answered
Can't uninstall because it was deleted
You can try re installing or manually deleting as explained here: https://in.mathworks.com/matlabcentral/answers/92244-how-do-i...

6 years ago | 0

Answered
Block Diagram Transfer Function
I think you can use the linearize function to do that when you specify your linearization input and output properly.

6 years ago | 0

Answered
How to choose the desired poles for this system[MIMO closed system] (Controller and observer design) ?
Your problem is basically a set path tracking problem. In you case the 'r' is nothing but 'v' and N is the third matrix give...

6 years ago | 0

| accepted

Answered
Retrieve data from a particualr row
Use this: %% Initialize variables. filename = 'C:\Users\Raj\Desktop\out_Denmark2030Alternative.txt'; % Put your text file path...

6 years ago | 0

| accepted

Answered
Could you check this implementaion of Controller and observer design?
Pretty good start!! Now, please note that since you have mentioned that your doubt is in implementation, I have seen only your...

6 years ago | 0

| accepted

Answered
Help counting a string of 1s in 2018a?
You can use something like this: A=[0 1 1 1 0 0 1 1 1 0 0] A1 = [1,diff(A)]~=0; Count = [A(A1)']; Required_Answer=sum(Count(...

6 years ago | 0

| accepted

Answered
How to store results from loops and put them in matrice
Just pre define R as an empty array and use it inside the loop with suitable indexing. Something like this: R=zeros(10,1); % Pr...

6 years ago | 0

| accepted

Answered
Hi everyone Any help please. In Matlab, even if in guiding me
1) Step 1: Choose suitable time domain criteria for your system and See the example on how to compute the dominant eigen values ...

6 years ago | 1

| accepted

Answered
Calculate taxi fare by giving multiple inputs and single output
Seems quite straightforward. Where exactly are you having problem? Your formulation should look like this: Fare=5+(2*(d-1))+(t*...

6 years ago | 1

Answered
lsim giving NaN output for zero input
I am getting zero output for zero input if that's what you are looking for. Check how you are using lsim. Zeros=[-37436128.4318...

6 years ago | 0

| accepted

Answered
Select rows and put into cell array
A=rand(10000,10) ii=1; for jj=1:10 num=1; for l=ii:10:10000 B(num,1:10)=A(l,1:10); ...

6 years ago | 1

Answered
How to store matrix whose dimension is changing in each iteration ?
Use cell array for i = 1:10 A = rand(i,i) % A size is changing with every iteration B{i} = A; % Store A as cell en...

6 years ago | 0

Answered
hi. im trying to turn these explanation into codes but i cant, can someone help me please?
How about this: https://in.mathworks.com/matlabcentral/fileexchange/64078-skin-segmentation-based-rgb?s_tid=answers_rc2-2_p5_ML...

6 years ago | 0

Answered
displaying matrix in .txt file (fprintf)
Just tweaked you code itself a little bit: fileID=fopen('MyFile.txt','w'); % Open text file for writing for k=1:3 fp...

6 years ago | 0

| accepted

Answered
How to print 1x50 array into a text file
Answer given by Akira is the optimal solution but since you have mentioned 'fprintf' as a tag, here are two ways to get what you...

6 years ago | 1

Answered
How initial condition of input in Matlab Function in algebraic loop?
1) "Does the input have to have initial conditions or not?" Definitely yes. Without Initial condition how will the algebraic loo...

6 years ago | 1

| accepted

Answered
how to read previous data
Define alpha in an array and use the previous two elements by suitable indexing in a 'for' loop. Something like this: n=input('...

6 years ago | 0

| accepted

Answered
Bring To Workspace variables from Simulink to base workspace from a matlab function
Use Simset. See details here. The 'DstWorkspace' property specifies the workspace in which to assign any variables defined in th...

6 years ago | 0

| accepted

Answered
Trouble with difference equation
1) For which value of 'a' are you trying to plot the stem graph? If for all the values from a=0:0.01:11 then shift the plot outs...

6 years ago | 0

| accepted

Answered
license manager error -103
See here: https://in.mathworks.com/matlabcentral/answers/91874-why-do-i-receive-license-manager-error-103 Also, See here: htt...

6 years ago | 0

| accepted

Answered
How do I obtain the matrix Q and R in LQR?
My response is quite late but since nobody has answered this question let me give a try. Maybe it'll benefit other people with s...

6 years ago | 0

Answered
Automatic data exporting/saving into "to workspace"
Question is not very clear. What I undertand is that you want to save some data to workspace. But instead of continuously saving...

6 years ago | 1

| accepted

Answered
Can a Simulink Modell, which been saved with Matlab 2011b, be opened with Simulink/Mtlab2016b?
Yes you can open a model created in 2011b version in 2016b version. However you need to be a bit careful here. If your model con...

6 years ago | 0

Answered
double arrows << are lost
You should have attached a screenshot with your question. Nevertheless see this post: https://in.mathworks.com/matlabcentral/an...

6 years ago | 0

Answered
Reading/writing in data from set of text files in loop
You can use 'sprintf' command in a loop to achieve this. Something like this: Mydata = zeros(100000, 10); for i=1:1 % Number o...

6 years ago | 1

| accepted

Answered
Effect of Unit Delay Block on Linked Models
You are right about the part that use of unit delay block has caused unexpected results. I have faces similar problems while des...

6 years ago | 0

Answered
Selecting Elements of an Array in Simulinks Based on Simulation Time
Since you have not shared your model, its difficult to give a precise answer. I assume you must be using user defined matlab fun...

6 years ago | 0

Answered
Can I add units to the table?
"Can I add units to the variables in the table?" Yes you can. You can specify units for each variable in the table by modifying ...

6 years ago | 2

Answered
How to store output for each input.
clc inputNames = {'mat1.mat', 'mat2.mat', 'mat3.mat'} length(inputNames) for i = [1:length(inputNames)] load(inputNames{...

6 years ago | 1

| accepted

Load more