Respondida
Animating the movement of a figure
A rough and quick example: for(n=1:1:360) RectangleData = calcRectangle(n); %calculate your new position hRectangle...

más de 4 años hace | 0

Respondida
Can I extract image coordinates using Matlab ?
Hey have you already tried to read in the .tiff? Have a look here: https://de.mathworks.com/help/matlab/ref/tiff.read.html May...

más de 4 años hace | 0

Respondida
how can I check if a specific value in a matrix is an integer?
I am not quiet sure if you mean a REAL integer or just a number like 3. Because matlab stores everything as double by default. B...

más de 4 años hace | 0

Respondida
Transfer function in Simulink
I am not sure if I understand your question completely. You should have a look on the system Identification Toolbox.

casi 5 años hace | 0

Respondida
How to calculate a integral for a 4D array?
Hey R.N. I think it makes more sense to make a simple cubic integral and show its value along the time variable?

casi 5 años hace | 0

Respondida
Errors after removal of appdata folder
Reinstallation of Matlab solved the problem. And remember never ever touch the appdata folder on Windows.

casi 5 años hace | 0

Pregunta


Errors after removal of appdata folder
Hi, I accidentaly removed the Appdatafolder on Windows10. After this Matlab behaves nicely said strange. I am actually writ...

casi 5 años hace | 2 respuestas | 0

2

respuestas

Respondida
How to display image from internet on axes?
Hi have a look at following code: filename = 'https://www.terra-hd.de/hochfelln/img/current/1400.jpg'; % Read it in to a varia...

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 1

| aceptada

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

casi 5 años hace | 0

| aceptada

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

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

| aceptada

Respondida
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

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

Resuelto


Is my wife right?
Regardless of input, output the string 'yes'.

casi 5 años hace

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

casi 5 años hace | 0

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

casi 5 años hace | 1

Resuelto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

casi 5 años hace

Resuelto


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

casi 5 años hace

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

casi 5 años hace | 0

| aceptada

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

casi 5 años hace | 0

| aceptada

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

casi 5 años hace | 0

Respondida
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=[]; ...

casi 5 años hace | 0

| aceptada

Resuelto


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

alrededor de 6 años hace