photo

Roman Müller-Hainbach


Bergische Universität Wuppertal

Last seen: 2 mois il y a Actif depuis 2015

Followers: 0   Following: 0

Message

Researcher using Matlab tools since 2015

Statistiques

All
MATLAB Answers

3 Questions
8 Réponses

File Exchange

5 Fichiers

Cody

0 Problèmes
103 Solutions

RANG
3 316
of 300 392

RÉPUTATION
17

CONTRIBUTIONS
3 Questions
8 Réponses

ACCEPTATION DE VOS RÉPONSES
33.33%

VOTES REÇUS
5

RANG
11 064 of 20 934

RÉPUTATION
48

CLASSEMENT MOYEN
3.00

CONTRIBUTIONS
5 Fichiers

TÉLÉCHARGEMENTS
6

ALL TIME TÉLÉCHARGEMENTS
481

RANG
3 353
of 168 373

CONTRIBUTIONS
0 Problèmes
103 Solutions

SCORE
1 100

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1
  • Explorer
  • First Review
  • First Submission
  • Commenter
  • Cody5 Easy Master
  • Knowledgeable Level 1
  • First Answer
  • Triathlon Participant
  • Scavenger Finisher
  • Solver

Afficher les badges

Feeds

Afficher par

Question


Default properties don't affect graphics, that are created with an empty parent
I regularly use graphics that are intentionally created unparented. Since I want my apps to work on all platforms, I have the ne...

plus de 4 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How can I send multiple commands to same command prompt opened by the first command
Use the system() function and string your commands together, separated by semicolons. system('cmd1; cmd2; cmd3')

presque 8 ans il y a | 3

Réponse apportée
MATLAB : PROBLEM WITH CELLFUN AND TWO VARIABLES FUNCTION.
Try this: tempoutemp = cellfun( @(network,arr)sim(network,arr), tempwmul,temptemp, 'un',0 );

presque 8 ans il y a | 0

| A accepté

Réponse apportée
Observe graphics object added to the axes
Maybe the 'LegendableObjectsUpdated' event could be used for your purposes. I retrieved this from events('matlab.graphics....

presque 8 ans il y a | 0

Réponse apportée
How do I store data in multiple loops?
Try concatenating the column vectors in the first dimension. Use [x,y] instead of [x;y] or use horzcat(x,y). This only works of ...

presque 8 ans il y a | 0

Réponse apportée
Difference between String and Value
Different UI elements have different uses for the 'String' and 'Value' property. in 'uicontrol's these properties behave depende...

presque 8 ans il y a | 0

Réponse apportée
Count sequence of zeros with For loop
It is not pretty, but it does what you want: function zeros = contzeros(A) zeros = cell( 1, size(A,2) ); for coli...

environ 8 ans il y a | 0

Réponse apportée
How to retrieve Toggle Button value during SPMD
A workaround for sharing information across multiple threads of execution is using your file system. Write the toggle button sta...

environ 9 ans il y a | 0

Réponse apportée
Hello, Any solution to run Python files through Matlab simultaneously ?
On Unix-systems I use this approach: Use the system()-command with something like this: 'python your_python_file.py &'. The '...

environ 9 ans il y a | 1

| A accepté

Question


How can I kill a system()-spawned process if it takes too long to finish?
I am using the system()-command to utilize external programs (command line tools) that compute stuff for me. Usually they finish...

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

1

réponse

Question


"Attempt to modify the tree during an update traversal"
I encountered an error while using Matlab that seemingly no one else encountered before me. Or atleast no one on the forum or el...

plus de 10 ans il y a | 2 réponses | 1

2

réponses