photo

Roman Müller-Hainbach


Bergische Universität Wuppertal

Last seen: 17 days 前 自 2015 起处于活动状态

Followers: 0   Following: 0

消息

Researcher using Matlab tools since 2015

统计学

All
MATLAB Answers

3 个提问
8 个回答

File Exchange

5 文件

Cody

0 个问题
103 个答案

排名
3,308
of 299,891

声誉
17

贡献数
3 个提问
8 个回答

回答接受率
33.33%

收到投票数
5

排名
11,053 of 20,831

声誉
47

平均
3.00

贡献数
5 文件

下载次数
8

ALL TIME 下载次数
479

排名
3,256
of 166,464

贡献数
0 个问题
103 个答案

评分
1,100

徽章数量
3

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

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 years 前 | 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')

8 years 前 | 3

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

8 years 前 | 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....

8 years 前 | 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 ...

8 years 前 | 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...

8 years 前 | 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...

8 years 前 | 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...

9 years 前 | 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 '...

9 years 前 | 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 years 前 | 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 years 前 | 2 个回答 | 1

2

个回答