Answered
Simulation Markov Chain.
May it helps: https://de.mathworks.com/help/econ/dtmc.html https://de.mathworks.com/help/econ/markov-chain-models.html

5 years ago | 0

Answered
Gui Layout Toolbox installing
Just type following into command window. "ver" shows you all installed toolboxes ver

5 years ago | 1

| accepted

Answered
How to draw in matlab
Have a look: g7=tf([100],[1 9 26 24]); %Root locus rlocus(g7) grid on

5 years ago | 0

| accepted

Answered
How to draw in matlab
Here a example for root Locus: g7=tf([100],[1 9 26 24]); rlocus(g7) grid on

5 years ago | 0

Answered
clear gui axes after plot?
have a look at https://de.mathworks.com/help/matlab/ref/cla.html

5 years ago | 0

Answered
Can I ask for help in making a GUI?
Look at the attachements. Should do the work Cheers.

5 years ago | 0

Answered
Hello there, We receive data from Arduino in series. We are trying to save this data in Matlab Guı as a .mat file with push button. Can you help with this?
Hey Merve, you have to access the serial port where your arduino is connected. That video should help: https://www.youtube....

5 years ago | 0

Answered
Extract specific line with nubers
Hey Ali, I hardly recommend you to format your data as a table. For extracting a specific Line use find(): For Example: ...

5 years ago | 0

| accepted

Answered
i am doing project on Design of Antilock braking system for motorcycle with fuzzy controller, is there any mathematical model available in matlab simulink?
https://de.mathworks.com/help/simulink/slref/modeling-an-anti-lock-braking-system.html hope it helps

5 years ago | 0

Answered
built-in function for rotating a curve
yep have a look at: https://de.mathworks.com/help/matlab/ref/rotate.html

5 years ago | 0

Answered
how two use deep learning to classsify remote image ?
For getting startet with deep learning I suggest you the matlab course "Deep learning on Ramp" https://de.mathworks.com/learn...

5 years ago | 0

Answered
How can I get a XY Coordinate, XZ coordinate from images and combine these into one matrix?
Hey Lee, I am not really familiar with image processing, but it sounds quiet simple for me. My example: just look at google...

5 years ago | 0

Answered
How can I fill boundary by white pixel?
Hey Bamini, I am not quiet sure if I have correctly understood your questions. But you have a given image with for example 10...

5 years ago | 1

Answered
Conditional replacement of a vector of zeros and ones
Hey David, this should do the Job. Sorry for my Variablenaming but I could not consider better names :) sequence=40; vector...

5 years ago | 0

| accepted

Answered
Matlab GUI. How can i make an animated dot in a parabola in a 1 by 1 plane?
Hey Ariel, with a 1by1 plane you mean a simple xy plane? Here a rough example. You should consider the command draw now. x=...

5 years ago | 0

| accepted

Answered
Pre Allocating for Speed
Hey Nathan, if a vector is not preallocated it means that it grows in every Iteration. This means you have to expand your ve...

5 years ago | 0

Answered
how to write matlab code
%I need to write matlab code to display number 20-50 except number that divisibility by 4 and 5 .How can i do it numbers=[]; ...

5 years ago | 0

| accepted