photo

Julian Hapke


Last seen: 2 jours il y a Actif depuis 2014

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

2 Questions
43 Réponses

File Exchange

1 Fichier

Cody

0 Problèmes
38 Solutions

RANG
701
of 301 671

RÉPUTATION
112

CONTRIBUTIONS
2 Questions
43 Réponses

ACCEPTATION DE VOS RÉPONSES
50.0%

VOTES REÇUS
37

RANG
12 162 of 21 379

RÉPUTATION
35

CLASSEMENT MOYEN
4.00

CONTRIBUTIONS
1 Fichier

TÉLÉCHARGEMENTS
2

ALL TIME TÉLÉCHARGEMENTS
239

RANG
14 936
of 176 058

CONTRIBUTIONS
0 Problèmes
38 Solutions

SCORE
403

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Commenter
  • 5-Star Galaxy Level 1
  • First Review
  • First Submission
  • Promoter
  • Solver
  • 3 Month Streak
  • Thankful Level 1
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
M-file code formatting tool
Here's a MATLAB snippet that depends on the undocumented tree2str and mtree, but produces a reasonable result: tree2str(mtree(F...

plus de 2 ans il y a | 0

Réponse apportée
Does Matlab have the function to format script?
Here's a MATLAB snippet that depends on the undocumented tree2str and mtree, but produces a reasonable result: tree2str(mtree(F...

plus de 2 ans il y a | 0

Réponse apportée
How do I make both yyaxis axes zoom together?
Here's a function that does not rely on an activated zoom tool and also works for panning function yysync(ax) %YYSYNC links le...

presque 3 ans il y a | 1

Réponse apportée
How do I include a MATLAB figure in a LaTeX document?
I recommend matlab2tikz from the FileExchange: matlab2tikz Those plots integrate into the whole LaTeX style very well.

environ 3 ans il y a | 2

Réponse apportée
Forward optional args to another function
there is namedargs2cell in the examples they use it for forwarding of name-value arguments.

presque 4 ans il y a | 2

| A accepté

Réponse apportée
inputdlg in the app designer
I think this solution should work for inputdlg as well: https://de.mathworks.com/matlabcentral/answers/296305-appdesigner-windo...

presque 5 ans il y a | 0

| A accepté

Réponse apportée
readtable (excel) behavior for string type with empty cell vs spaces
If you do not use the FillValue property of the VariableImportOptions, but set EmptyFieldRule to "auto", missing strings are imp...

presque 5 ans il y a | 0

Réponse apportée
How do features from 'license' correspond to names from 'ver'
Here's what I use: EDIT: Now all features known to the current release are listed, not only the installed ones. function OUT =...

environ 6 ans il y a | 8

Réponse apportée
MATLAB Crashes when Using Conda Environment Other than Base
Try this: load your environment in a seperate promt, have a look at the path variable (assuming windows here) echo %PATH% unl...

environ 7 ans il y a | 9

Réponse apportée
Is it Posible to remove background and box in data tip? The data tip cover my graphic
set(h, 'BackgroundAlpha', 0) with h being the handle of the datatip. When you create the DataTip by hand, you don't have the...

plus de 7 ans il y a | 0

Réponse apportée
Checking if minimum of a matrix occurs on the diagonal
with a slight modification of Adams comment: diag(testMatrix) == min(testMatrix , [], 2) min accepts the dimension in wh...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
How can I use a legend for only only line in a subpot?
the legend is correct for what you plotted, each iteration creates 3 plots, the namesConditions has 4 entries, which are assigne...

environ 8 ans il y a | 0

Réponse apportée
How to remove cells that look seemingly like newline character from cell array?
You should determine which character you are seeing: Extract a cell that contains only the character in question and convert ...

environ 8 ans il y a | 0

Réponse apportée
Assign XLabel, YLabel from variable, fix YLim
doc xlabel Edit: extented explanation: ax_handle.XLabel returns a handle for the label. This object has a property named "...

environ 8 ans il y a | 0

Réponse apportée
How to write code the Chebyshev and Mahalanobis distance using bsxfun function?
Hi, your example code does not work. Bsxfun cannot operate on those arrays. When X (as in your case) is an Nx2 matrix, and y...

environ 8 ans il y a | 0

| A accepté

Réponse apportée
sprintf - Linux OK but Windows Warning: Escaped character '\.' is not valid. See 'doc sprintf' for supported special characters.
The warning you get should be: Escaped character '\%' is not valid. What you want is a platform dependent filesep ...

plus de 8 ans il y a | 0

Réponse apportée
Change a for loop iteration if condition is met
with a while loop: a=5; b=0; c=0; t = 1; while t <=100 a = a+t; if a == 20 b = 20; ...

presque 9 ans il y a | 0

Réponse apportée
Drawing a white line on an image using (rho, theta).
My comment was the answer, so to stick to the structure of this forum: Your calculation of x and y yields to wrong values. If...

presque 9 ans il y a | 0

Réponse apportée
vector thats sorts values , even or odd, using only function
I agree with Guillaume and Jan, you should explain a bit more of your problem. I'm not going to write the function, but here are...

presque 9 ans il y a | 0

Réponse apportée
How to implement a (semi)automated algorithm for thorax and lung segmentation?
Have a look at <"https://de.mathworks.com/matlabcentral/answers/182511-model-reconstruction-from-ct-slices" this> and the mentio...

presque 9 ans il y a | 0

Réponse apportée
How can read binary file one by one?
have a look at the <https://de.mathworks.com/help/matlab/ref/fread.html fread> function

presque 9 ans il y a | 2

| A accepté

Réponse apportée
Does relative velocity vector lie on the line?
define a vector between the two points and check if the cross product of the delta velocity and the connection vector is 0. so i...

presque 9 ans il y a | 1

Réponse apportée
points too close XY space
assuming only neighboring points are of interest: % find close points, add first index because diff is one shorter than x ...

presque 9 ans il y a | 0

Réponse apportée
How can I count the occurrences of each element in a vector in MATLAB?
here is another one: sum(bsxfun(@eq,x,x'),1) or if you want the output to be the same orientation as input sum(bsxf...

presque 9 ans il y a | 3

Réponse apportée
matlab 2016a figure window incorrect position and size
If the problem still exists, just add this line to the startup.m in your startup directory or your userpath. set(0,'default...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
Convert matrix to vector of structs
simpler without any external functions olderpatients = structfun(@(X) X(data.age>80),data,'Uni',false);

plus de 9 ans il y a | 1

Réponse apportée
How can I assign data from multiple spreadsheets to the same vector using one of the columns as the variable name?
I copied your example sheet to example.xlsx and tested the code below. Please Note the remarks, I would not recommend the use of...

plus de 9 ans il y a | 1

Réponse apportée
Why doesn't the quiver object property MaxHeadSize work?
Here's my findings... Testcode: function tst close all figure(3) clf; hold on for ii = 1:15 ...

environ 10 ans il y a | 0

Réponse apportée
Merging 10 scatter plots produced with different RNG sequences
you can access the data of each plot by X=cell(10,1) Y=X for ii = 1:10 f = open('figure_ii.fig') % use the cor...

environ 10 ans il y a | 0

Réponse apportée
Are there any predefined discrete color set with optimal neighboring contrasts?
have a look at this: <http://www.mathworks.com/matlabcentral/fileexchange/29702-generate-maximally-perceptually-distinct-colors...

environ 10 ans il y a | 1

Charger plus