Réponse apportée
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 ...

presque 7 ans il y a | 0

Réponse apportée
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.

presque 7 ans il y a | 0

Réponse apportée
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 ...

presque 7 ans il y a | 1

Réponse apportée
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...

presque 7 ans il y a | 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...

presque 7 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
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 ...

presque 7 ans il y a | 0

Réponse apportée
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.

presque 7 ans il y a | 0

Réponse apportée
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...

presque 7 ans il y a | 1

Réponse apportée
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= ...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
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...

presque 7 ans il y a | 0

Réponse apportée
Am I eligible for a student license?
You can download the trial version from mathworks website.

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 1

| A accepté

A résolu


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

environ 7 ans il y a

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
(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...

environ 7 ans il y a | 1

Réponse apportée
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...

environ 7 ans il y a | 0

Réponse apportée
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"....

environ 7 ans il y a | 0

A résolu


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

environ 7 ans il y a

Réponse apportée
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...

environ 7 ans il y a | 2