Risposto
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 ...

circa 7 anni fa | 0

Risposto
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.

circa 7 anni fa | 0

Risposto
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 ...

circa 7 anni fa | 1

Risposto
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...

circa 7 anni fa | 0

Domanda


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...

circa 7 anni fa | 1 risposta | 0

1

risposta

Risposto
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 ...

circa 7 anni fa | 0

Risposto
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.

circa 7 anni fa | 0

Risposto
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...

circa 7 anni fa | 1

Risposto
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= ...

circa 7 anni fa | 1

| accettato

Risposto
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...

circa 7 anni fa | 0

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

circa 7 anni fa | 0

Risposto
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...

circa 7 anni fa | 1

| accettato

Risolto


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...

circa 7 anni fa

Risposto
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...

circa 7 anni fa | 0

Risposto
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...

circa 7 anni fa | 0

Risposto
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...

circa 7 anni fa | 0

Risposto
(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...

circa 7 anni fa | 1

Risposto
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...

circa 7 anni fa | 0

Risposto
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"....

circa 7 anni fa | 0

Risolto


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:...

circa 7 anni fa

Risposto
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...

circa 7 anni fa | 2