Andreas Bernatzky - MATLAB Central
photo

Andreas Bernatzky


Hochschule Rosenheim

Last seen: bijna 4 jaar ago Active since 2018

Followers: 0   Following: 0

Message

Statistics

All
MATLAB AnswersFile ExchangeCodyZoom OutFrom 01/18 to 03/25Use left and right arrows to move selectionFrom 01/18Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 Questions
43 Answers

File Exchange

6 Files

Cody

0 Problems
6 Solutions

RANK
1.356
of 297.503

REPUTATION
52

CONTRIBUTIONS
4 Questions
43 Answers

ANSWER ACCEPTANCE
75.0%

VOTES RECEIVED
6

RANK
6.844 of 20.449

REPUTATION
153

AVERAGE RATING
0.00

CONTRIBUTIONS
6 Files

DOWNLOADS
17

ALL TIME DOWNLOADS
1536

RANK
49.119
of 159.017

CONTRIBUTIONS
0 Problems
6 Solutions

SCORE
70

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Knowledgeable Level 3
  • Revival Level 1
  • 3 Month Streak
  • Personal Best Downloads Level 2
  • GitHub Submissions Level 3
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
Dust simulation and electrode modeling using Matlab
Hey James, I had a look at this one: https://de.mathworks.com/matlabcentral/fileexchange/42288-calculating-electric-field-of-a...

ongeveer 4 jaar ago | 0

Answered
How to randomly select 2 rows
This would be my solution: myMat = rand(10,50); [nRow,~] = size(myMat); randomRows = round((nRow - 1).*rand(2,1) + 1); % fr...

meer dan 4 jaar ago | 1

Answered
How to create drag and drop in App Designer?
Hi this did the Job for me: https://de.mathworks.com/matlabcentral/fileexchange/69195-drag-and-drop-in-matlab-app-designer

meer dan 4 jaar ago | 0

Answered
How to compute a vector using a for loop
Hi Timothy, I am not completely sure if I fully understand your question. Maybe you should post your post. But what you want...

meer dan 4 jaar ago | 0

Answered
Adding Color to Text in Rows in UI Table in GUI
Hi if you have an handle h to the object you can try this: set(h, 'Color',[1, 0 ,0], 'FontSize', 20)

meer dan 4 jaar ago | 0

Answered
How do I derive a linear equation for wind speed between 13km/h –50km/h using “if-else”?
you have to index Wind_Year with your increment i. For example Wind_Year(i) but heavily depends on what type of container your ...

meer dan 4 jaar ago | 0

Solved


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

meer dan 4 jaar ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

meer dan 4 jaar ago

Question


Extract data from nyquist plot
Hello, I am trying to extract the data of a nyquist plot and plot it into another figure (I have to do this for another API nor...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Answered
why do I get NaN result
Hey Nazil, I can just remember the RSA really roughly but I did some researches yesterday evening and I read at several points ...

bijna 5 jaar ago | 1

Answered
Saving figures into structure?
Hey Jared, data = rand(10,2); myStruct.structFig = plot(data); myStruct.structData = data; m = figure(2); % does not ...

bijna 5 jaar ago | 0

| accepted

Answered
generating a 3d surface from from [x,y,z,c] matrix
Hey Abdulelah, I have made some approaches with density3D from: https://github.com/TypHo22/2D_3D-Density-Histogram should do ...

bijna 5 jaar ago | 0

Question


Problem with compiling SimulinkCompiler example
Hi everyone I am trying to compile the Simulinkcompiler example: https://de.mathworks.com/help/releases/R2020a/slcompiler/ug/de...

bijna 5 jaar ago | 0 answers | 0

0

answers

Submitted


openDrive-Parampoly3
Shows Parameter sensitivity of ParamPoly3 geometry

bijna 5 jaar ago | 1 download |

0.0 / 5
Thumbnail

Answered
Get average water flow for every 15min between 1am and 5am of each day
Hey Charles, the easiest approach in my opinion is the following. keep in mind this is pseudoCode (have no matlab at the momen...

bijna 5 jaar ago | 0

Answered
How to change a line in .txt file by importing a name, from a loop
should finally do the work now: opts = detectImportOptions('test.csv'); opts.DataLines(1) = 1; %begin in first row opts.Data...

bijna 5 jaar ago | 0

Answered
Plotting multiple graphics in Appdesigner
Hi Francesco, I have written a small example for you. Because you have no code attached I can not say where your mistake is. ...

bijna 5 jaar ago | 1

| accepted

Submitted


Matlab2Arduino
Control a Servomotor with Matlab and Arduino without using Arduino Toolbox

bijna 5 jaar ago | 4 downloads |

0.0 / 5
Thumbnail

Answered
How can I solve this system of equation
Hey Vince Ugo, you can not convert a variable into a symbolic expression (subsituting) and convert them into double() values an...

bijna 5 jaar ago | 0

Answered
I have made a code for calculating the electric field intensity for n charges. I need help plotting the electric field intensity pl help !
As darova already mentioned it is really annoying. You should think about a different user input. But for visualizing I would ...

bijna 5 jaar ago | 0

| accepted

Answered
GUI in Matlab or C++ ?
Hey Osama, if you are asking which programming language is better for making a GUI implicates you have never done a GUI in C...

ongeveer 5 jaar ago | 0

| accepted

Submitted


Concave hull: A k-nearest neighbours algorithm
Concave hull: A k-nearest neighbours approach for the computation of the region occupied by a set of points

ongeveer 5 jaar ago | 5 downloads |

0.0 / 5
Thumbnail

Submitted


2D_3D-Density-Histogram
This function makes a 2d histogram as an alternative to plotting data points and visually estimating where the most data is.

ongeveer 5 jaar ago | 1 download |

0.0 / 5
Thumbnail

Submitted


imageSave
Function to save all open Matlab figures to a specific directory

ongeveer 5 jaar ago | 2 downloads |

0.0 / 5
Thumbnail

Submitted


Graham-Scan
Algorithm for calculating a convex hull around a point cloud

ongeveer 5 jaar ago | 4 downloads |

0.0 / 5
Thumbnail

Question


Include Simulink model in a matlab executable
Hello everyone, I want to deploy a matlab program (matlab compiler) which communicates with several simulink models. As known t...

ongeveer 5 jaar ago | 1 answer | 0

1

answer

Answered
how to draw a 3d pyramid using patch
Hope that suits you. Did it in an Objectorientated approach because I think this can be reused easier Some theory for patch whi...

ongeveer 5 jaar ago | 1

Answered
How to take screenshot of a web page automatically using MATLAB?
Hi Tanzina, because I have not yet tackled such a task I can make only a few assumptions. For taking a screenshot: https://...

ongeveer 5 jaar ago | 0

Answered
Limiting the number of Matlab figure windows
You should consider debugging without plotting and use breakpoints instead. I do not know the maximum limit of possible plot...

ongeveer 5 jaar ago | 0

Answered
Create a 3D surface using 3 matrices
Have a look at https://de.mathworks.com/help/matlab/ref/surf.html https://de.mathworks.com/help/matlab/ref/mesh.html

ongeveer 5 jaar ago | 0

Load more