Programming Languages:
Python, MATLAB
Spoken Languages:
English
Python, MATLAB
Spoken Languages:
English
統計
All
Feeds
回答済み
Is it possible that the output of the From Multimedia File block be the input of the Entity Generator Block?
I am not familiar with video streaming at all, but I think you need to know that entities carry information via attributes. You ...
Is it possible that the output of the From Multimedia File block be the input of the Entity Generator Block?
I am not familiar with video streaming at all, but I think you need to know that entities carry information via attributes. You ...
2年弱 前 | 0
質問
Connect to OLAP database using jdbc4olap driver
I am trying to connect to an OLAP database. I know that MATLAB cannot connect to multidimensional databases natively, and need J...
約2年 前 | 0 件の回答 | 0
0
回答回答済み
What does "entitySys.id" do in Simevent Blocks?
Yes, that's it. It is the index for all of the entities generated within the model. They are useful when you are using SimEvents...
What does "entitySys.id" do in Simevent Blocks?
Yes, that's it. It is the index for all of the entities generated within the model. They are useful when you are using SimEvents...
2年以上 前 | 0
| 採用済み
回答済み
Create entity type and define attributes in custom entity generator using Matlab discrete event system
You must set the attribute in the Generate event action. function [entity,events] = generate(obj,storage,entity,tag) enti...
Create entity type and define attributes in custom entity generator using Matlab discrete event system
You must set the attribute in the Generate event action. function [entity,events] = generate(obj,storage,entity,tag) enti...
2年以上 前 | 0
回答済み
simevents entity generation with attributes
You must set the attribute in the Generate event action, using in1. function [entity,events] = generate(obj,storage,entity,tag...
simevents entity generation with attributes
You must set the attribute in the Generate event action, using in1. function [entity,events] = generate(obj,storage,entity,tag...
2年以上 前 | 0
回答済み
Speeding up Simulink simulations with event charts and random events
You should try parsim() with fast restart enabled. Read my answer here for further details about this methodology. https://www...
Speeding up Simulink simulations with event charts and random events
You should try parsim() with fast restart enabled. Read my answer here for further details about this methodology. https://www...
2年以上 前 | 1
回答済み
How to make workspace variables referenced in simevents blocks tunable parameters?
Event actions cannot take tunable parameters. Instead, you can get the desired value from a Simulink function. The Simulink func...
How to make workspace variables referenced in simevents blocks tunable parameters?
Event actions cannot take tunable parameters. Instead, you can get the desired value from a Simulink function. The Simulink func...
2年以上 前 | 0
| 採用済み
回答済み
Passing of entities to multiple destination
You should use an Entity Replicator block in order to create copies to be sent to multiple destinations. Replicate entities - ...
Passing of entities to multiple destination
You should use an Entity Replicator block in order to create copies to be sent to multiple destinations. Replicate entities - ...
2年以上 前 | 0
回答済み
parsim() with fast restart returns different results
Just installed R2021b, and the problem is solved, which was not until R2021a.
parsim() with fast restart returns different results
Just installed R2021b, and the problem is solved, which was not until R2021a.
約3年 前 | 0
| 採用済み
回答済み
Random generator seed for parallel simulation using fast restart
I do not know the solution to your problem, but I just want to mention that I faced a problem with SimEvents and parsim() with f...
Random generator seed for parallel simulation using fast restart
I do not know the solution to your problem, but I just want to mention that I faced a problem with SimEvents and parsim() with f...
約3年 前 | 1
回答済み
Switching different batch names through a switch
Your description of the problem is a bit confusing for me. Are you talking about something like this?
Switching different batch names through a switch
Your description of the problem is a bit confusing for me. Are you talking about something like this?
約3年 前 | 0
回答済み
how to assign the service time value of the entity server to the entity attribute?
You can create a Simulink function, whose input port is connected to the output of the random number source. Then in the generat...
how to assign the service time value of the entity server to the entity attribute?
You can create a Simulink function, whose input port is connected to the output of the random number source. Then in the generat...
約3年 前 | 1
| 採用済み
回答済み
Contributors metainfo: reputation and more
I think it would be a great idea to identify prolific users in each toolbox. For example, I do not have enough leisure time, and...
Contributors metainfo: reputation and more
I think it would be a great idea to identify prolific users in each toolbox. For example, I do not have enough leisure time, and...
約3年 前 | 0
回答済み
Some values in optimal solution are still violating the constraint limits in Matlab FMINCON
Try setting the MaxIterations in options to a higher number.
Some values in optimal solution are still violating the constraint limits in Matlab FMINCON
Try setting the MaxIterations in options to a higher number.
約3年 前 | 0
回答済み
Cut off new arrival of entites to server until server is completely empty again
The solution is to place two Hit crossing blocks to detect the state of the server. When the server is full, the gate closes, an...
Cut off new arrival of entites to server until server is completely empty again
The solution is to place two Hit crossing blocks to detect the state of the server. When the server is full, the gate closes, an...
約3年 前 | 1
| 採用済み
回答済み
Persistent variables from Simulink to Matlab
I think the best way to do this is to create a Simulink function that includes no blocks, but its output port is connected to a ...
Persistent variables from Simulink to Matlab
I think the best way to do this is to create a Simulink function that includes no blocks, but its output port is connected to a ...
約3年 前 | 0
回答済み
Setting block parameters programatically inside a simevents block's event actions
I do not have an exact solution for your problem, but I'm sure SimEvents' block parameters cannot be changed when the model is r...
Setting block parameters programatically inside a simevents block's event actions
I do not have an exact solution for your problem, but I'm sure SimEvents' block parameters cannot be changed when the model is r...
約3年 前 | 0
| 採用済み
回答済み
Mimimize initializing time for SimEvent model
If you are doing a sensitivity analysis and you execute hundreds of simulations, the correct workflow is to use SimulationInput ...
Mimimize initializing time for SimEvent model
If you are doing a sensitivity analysis and you execute hundreds of simulations, the correct workflow is to use SimulationInput ...
約3年 前 | 0
| 採用済み
回答済み
SimEvents - inheritance & relative references & resource control
1. MATLAB Discrete-Event System (MDES) block allows you to share code between multiple instances of an object, where each block ...
SimEvents - inheritance & relative references & resource control
1. MATLAB Discrete-Event System (MDES) block allows you to share code between multiple instances of an object, where each block ...
3年以上 前 | 0
| 採用済み
回答済み
How do i find out if a queue is not empty?
At such points, the next block to which the Compare blocks are connected, is a Hit crossing block.
How do i find out if a queue is not empty?
At such points, the next block to which the Compare blocks are connected, is a Hit crossing block.
3年以上 前 | 0
回答済み
How I can specify more parameters to GA in order to speed up my code execution. with the help of (optimoptions function of ga).. opts = optimoptions(@ga,
Indeed vectorization helps a lot for non-simulation objective functions. You should use the UseVectorized option.
How I can specify more parameters to GA in order to speed up my code execution. with the help of (optimoptions function of ga).. opts = optimoptions(@ga,
Indeed vectorization helps a lot for non-simulation objective functions. You should use the UseVectorized option.
3年以上 前 | 0
回答済み
Design Verifier compatibility with SimEvents blocks
I haven't used Design verifier with SimEvents blocks, but I think the error message is clear. The model containing SimEvents blo...
Design Verifier compatibility with SimEvents blocks
I haven't used Design verifier with SimEvents blocks, but I think the error message is clear. The model containing SimEvents blo...
3年以上 前 | 0
回答済み
Unable to perform assignment because the size of the left side is
The error is clearly saying that the size matrices do not match. data1 must be a 5x60522 matrix.
Unable to perform assignment because the size of the left side is
The error is clearly saying that the size matrices do not match. data1 must be a 5x60522 matrix.
3年以上 前 | 1
| 採用済み
回答済み
SimEvents - Setting Entity Attributes based on other entities
You can implement this in two ways. The first approach is easier, and can be implemented via existing SimEvents blocks, but can ...
SimEvents - Setting Entity Attributes based on other entities
You can implement this in two ways. The first approach is easier, and can be implemented via existing SimEvents blocks, but can ...
3年以上 前 | 0
| 採用済み
回答済み
Modelling a crane operation in Simulink
The model you are seeking for is not hard to create. And your question is too broad to fit in one post. You should start modelin...
Modelling a crane operation in Simulink
The model you are seeking for is not hard to create. And your question is too broad to fit in one post. You should start modelin...
3年以上 前 | 0
回答済み
How to draw a specific figure
If you have the data for the edges of the curves, you can use patch(). If multiple curves belong to one or more surfaces, you ca...
How to draw a specific figure
If you have the data for the edges of the curves, you can use patch(). If multiple curves belong to one or more surfaces, you ca...
3年以上 前 | 0
| 採用済み
回答済み
Linear regression or confidence interval between two columns
I don't think regression would help you. Statistical tests like t-test with independent or paired samples would be much better. ...
Linear regression or confidence interval between two columns
I don't think regression would help you. Statistical tests like t-test with independent or paired samples would be much better. ...
3年以上 前 | 0
回答済み
Calculate Travel time in Simulink
You need to create an attribute to stamp the generation time, and another to stamp the termination time. The difference between ...
Calculate Travel time in Simulink
You need to create an attribute to stamp the generation time, and another to stamp the termination time. The difference between ...
3年以上 前 | 1
| 採用済み
回答済み
how to handle entities group in Simulink(simevents)?
I suspect you are using random numbers for generating the intergeneration time of entities. You should use fixed time-intervals....
how to handle entities group in Simulink(simevents)?
I suspect you are using random numbers for generating the intergeneration time of entities. You should use fixed time-intervals....
3年以上 前 | 0
| 採用済み
回答済み
Simulation of an production system
If I have understood you well, you need to re-run the sorting algorithm in certain time intervals. If that is the case, you need...
Simulation of an production system
If I have understood you well, you need to re-run the sorting algorithm in certain time intervals. If that is the case, you need...
3年以上 前 | 0
| 採用済み