回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

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

7年弱 前 | 0

回答済み
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...

7年弱 前 | 0

| 採用済み

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

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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(...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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 ...

7年弱 前 | 1

| 採用済み

回答済み
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*...

7年弱 前 | 1

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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); ...

7年弱 前 | 1

回答済み
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...

7年弱 前 | 0

回答済み
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...

7年弱 前 | 0

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 1

回答済み
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...

7年弱 前 | 1

| 採用済み

回答済み
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('...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

| 採用済み

回答済み
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...

7年弱 前 | 0

回答済み
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...

7年弱 前 | 1

| 採用済み

回答済み
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...

7年弱 前 | 0

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

7年弱 前 | 0

回答済み
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...

7年弱 前 | 1

| 採用済み

回答済み
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...

7年弱 前 | 0

回答済み
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...

約7年 前 | 0

回答済み
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 ...

約7年 前 | 2

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

約7年 前 | 1

| 採用済み

さらに読み込む