Community Profile

photo

Roman Müller-Hainbach


Bergische Universität Wuppertal

Last seen: 4 meses hace Con actividad desde 2015

Followers: 0   Following: 0

Contacto

Researcher using Matlab tools since 2015

Estadísticas

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

Ver insignias

Feeds

Ver por

Pregunta


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

alrededor de 3 años hace | 1 respuesta | 0

1

respuesta

Respondida
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')

más de 6 años hace | 3

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

más de 6 años hace | 0

| aceptada

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

más de 6 años hace | 0

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

más de 6 años hace | 0

Respondida
Difference between String and Value
Different UI elements have different uses for the 'String' and 'Value' property. in 'uicontrol's these properties behave depende...

más de 6 años hace | 0

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

más de 6 años hace | 0

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

más de 7 años hace | 0

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

más de 7 años hace | 1

| aceptada

Pregunta


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

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

alrededor de 9 años hace | 2 respuestas | 1

2

respuestas