Answered
How to code a possibility integer numbers A, B for equation A+B=10
Try this: for A=0:10 for B=0:10 if A+B == 10 disp('Combination of A and B satisfying the condition ...

7 years ago | 0

Answered
I am a student so is how to get a license to proceed?
You can download the Trial version which will be valid for 30 days from the date of installation.

7 years ago | 0

Answered
How to find a system's transfer function (Control Systems Toolbox)
Hello, From the information you have provided, it is understood that you have a set of input-output data and you want to model ...

7 years ago | 1

Answered
Problem plotting graph in the same plot
Hi, Since I dont have the "latticepoints" data, I assumed it as "latticepoints=ones(1,501);" Now your "FOR" loop starts at R=0...

7 years ago | 0

Question


MATHWORKS Version release policy
Not exactly a Techincal question but just want to know your opinion.Do you also feel that Mathworks policy of releasing two vers...

7 years ago | 1 answer | 0

1

answer

Answered
cut frequency in band pass
The app snapshot you have attached is quite self explanatory for designing a Bandpass filter. So I am not sure what exactly you ...

7 years ago | 0

Answered
How can i remove loaded *.mat file from workspace?
Use "clear all" command to clear your workspace. Be sure to save it first if you intend to reuse it again in future.

7 years ago | 0

Answered
How to find a system's transfer function (Control Systems Toolbox)
A little more detail on your system would have helped to give precise answer. However, in general modelling of any system starts...

7 years ago | 1

Answered
Re-arrange vectors from rows to columns
A = [1 1 1 1 1 1 1 1 1 1]; B= [2 2 2 2 2 2 2 2 2 2 ] ; C= ...

7 years ago | 1

| accepted

Answered
Difference between S function and MATLAB Function?
Hello, MATLAB function or User defined function allows you to write your own function in MATLAB language. This is basically use...

7 years ago | 0

Answered
Am I eligible for a student license?
You can download the trial version from mathworks website.

7 years ago | 0

Answered
How to start Model Based Designing?
Welcome to the club. Model based design is quite easy to pick up. Start with Inbuilt Demos and Examples. It'll be even better if...

7 years ago | 1

| accepted

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

7 years ago

Answered
How to use LQR and code generation?
Unfortunately there is not work around here. Coder.Extrinsic functions are not supported for code generation. Only call to there...

7 years ago | 0

Answered
Aerospace and Flight Controls
Hi, Your question is very vague. Do you want to make mathematical model of aircraft or flight control algorithm or something el...

7 years ago | 0

Answered
LQR control found the matrix K and used it as a feed back to the system but my input is not a matrix so how to use the matrix feed back K with the system ?
Your question is not quite clear. I assume what you mean to say is that your system has one control input and four output states...

7 years ago | 0

Answered
(Simulink) How run one subsystem just one once and the second subystem run forever
At first glance your question looks like you are tryiing to make a time machine :D Anyways, there is a simple way to do this. U...

7 years ago | 1

Answered
Hi, I have created a simulink file .slx in 2017rb and saved the file. converted the file to 2016rb to open it on other machine. It stills shows lot of error and the all the m files in the simulink models, fail to load.
DO NOT USE "save as" option to convert higher version models to lower version models. To ensure Back compatibility, Mathworks ha...

7 years ago | 0

Answered
Writing equations in MATLAB function vs using Simulink Blocks
Hi, I am not sure based on what you said "Writing in MATLAB function block makes it easier to read and also to edit in future"....

7 years ago | 0

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

7 years ago

Answered
How to tune the matrices Q and R in LQR controller design
Hi, There is no fixed rule or formal method to estimate and tune the weight matrices Q and R. It is an iterative process wherei...

7 years ago | 2