![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/5324027.jpg)
Roman Müller-Hainbach
Bergische Universität Wuppertal
Followers: 0 Following: 0
Researcher using Matlab tools since 2015
統計
All
Feeds
質問
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...
4年弱 前 | 1 件の回答 | 0
1
回答回答済み
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')
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')
7年以上 前 | 3
回答済み
MATLAB : PROBLEM WITH CELLFUN AND TWO VARIABLES FUNCTION.
Try this: tempoutemp = cellfun( @(network,arr)sim(network,arr), tempwmul,temptemp, 'un',0 );
MATLAB : PROBLEM WITH CELLFUN AND TWO VARIABLES FUNCTION.
Try this: tempoutemp = cellfun( @(network,arr)sim(network,arr), tempwmul,temptemp, 'un',0 );
7年以上 前 | 0
| 採用済み
回答済み
Observe graphics object added to the axes
Maybe the 'LegendableObjectsUpdated' event could be used for your purposes. I retrieved this from events('matlab.graphics....
Observe graphics object added to the axes
Maybe the 'LegendableObjectsUpdated' event could be used for your purposes. I retrieved this from events('matlab.graphics....
7年以上 前 | 0
回答済み
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 ...
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 ...
7年以上 前 | 0
回答済み
Difference between String and Value
Different UI elements have different uses for the 'String' and 'Value' property. in 'uicontrol's these properties behave depende...
Difference between String and Value
Different UI elements have different uses for the 'String' and 'Value' property. in 'uicontrol's these properties behave depende...
7年以上 前 | 0
回答済み
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...
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...
7年以上 前 | 0
回答済み
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...
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...
8年以上 前 | 0
回答済み
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 '...
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 '...
8年以上 前 | 1
| 採用済み
質問
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...
約9年 前 | 1 件の回答 | 0
1
回答質問
"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...
10年弱 前 | 2 件の回答 | 1