回答済み
Plotting multiple plots in for loop
You should not use the figure command inside a loop. Each call to command creates a new figure window. When you call the plot fu...

3年弱 前 | 0

| 採用済み

送信済み


Golden Eagle Optimizer Toolbox
Source code and user interface for Golden Eagle Optimizer (GEO) and Multi-Objective Golden Eagle Optimizer (MOGEO) metaheuristi...

約3年 前 | ダウンロード 18 件 |

Thumbnail

回答済み
Simulink: Output argument 'mot_trq_dem' is not assigned on some execution paths
Maybe adding an empty else to each if helps. For example: if ... ... else end

約3年 前 | 0

回答済み
Test for Poisson distribution
Maybe the problem is that you have created too many bins; one bin for each observation. That would not yield good results. Consi...

約3年 前 | 0

回答済み
how to animate circle
You first draw the single point at the top of the circle. Then you edit the XData and YData properties of the line after a pause...

約3年 前 | 0

回答済み
"DOC is not currently available" error when using the local documentation in MATLAB
Just google the name of the toolbox you want plus "pdf documentation". You can find the documentation homepage for the toolbox, ...

約3年 前 | 0

回答済み
How to save strings in a loop into an array?
You should first initialize the direction vector: direction = strings (1, 200); Then assign a value to a certain element of ...

約3年 前 | 0

| 採用済み

回答済み
Performance: readTable versus xlsread
I don't know about the exact thing you mentioned, but I have experienced that when reading many matrixes from Excel (hence many ...

約3年 前 | 0

回答済み
trying to use a neural network in a genetic optimiser
If I have understood you well, you want ga() to train your feedforward ANN. If so, you can read about it here: https://www.mat...

約3年 前 | 0

回答済み
Resource pool, average utilization statistic
SimEvents blocks' statistics are updated not continuously, but rather when an event is triggerred. The system state between the ...

約3年 前 | 0

回答済み
Elevators with Sim Events
The model described in the tutorial you mentioned exhibits only one person, but it can be used for any capacity of the elevator ...

約3年 前 | 0

回答済み
How to split a product unevenly and create more subproducts from its remainder using SimEvents?
SimEvent's standard block library only includes blocks with one storage. What you want requires more than one storage, thus, in ...

約3年 前 | 0

回答済み
Release entity from server based on event...
SimEvent's standard block library only includes blocks that contain only one storage. What you need requires more than one stora...

約3年 前 | 0

回答済み
How to change Probability Vectors from workspace/file
You can pass the probability vectors as a variable, using SimulationInput objects. More to read: https://www.mathworks.com/h...

約3年 前 | 0

回答済み
can I see the matlab code generated by simevents model
Simulink blocks are compiled into C, and not MATLAB.

約3年 前 | 0

回答済み
How can I set attribute age in simevents
For each entity, you should first select an interval based on probabilities using a discrete probability function, and then, gen...

約3年 前 | 0

回答済み
Modelling two activities that start at the same time on a common entity in SimEvents
You need a Resource Acquirer block, two Entity Server blocks, and two Resource Release blocks. When the entity enters the Resour...

約3年 前 | 0

回答済み
How to perform Aggregation in simevents
My answer from here: Simevents is based on entity-storage system notion, and its standard block library only includes blocks t...

約3年 前 | 0

回答済み
SimEvents: route using on attribute
You can create a scalar attribute, whose value is equal to the first element of the vector. entity.Attribute2 = out_package (1...

約3年 前 | 0

回答済み
Vectorize multiple t tests across matrices
ttest cannot be vectorized. I think the only speed boost left for you is to use parfor instead of for, as long as you have Paral...

約3年 前 | 0

回答済み
How do I implement simulannealbnd function in simulink?
You can declare the functions that are not compatible with code generation using coder.extrinsic() as extrinsic functions. Simpl...

約3年 前 | 0

| 採用済み

回答済み
Making a bunch of entity generators to generate variants in a simevents DES system
The best approach for you is as follows: Generate a random number for every variant. Use the minimum value of the array as t...

約3年 前 | 0

回答済み
how to assign the service time value of the first entity server to the second entity server?
You can add an attribute to the entities, so that when the entity arrives in the first server, the assigned service time is reco...

約3年 前 | 0

回答済み
Grouping entities in SimEvents
Simevents is based on entity-storage system notion, and its standard block library only includes blocks that include only one st...

約3年 前 | 0

| 採用済み

回答済み
Get parallel simulations in objective function of optimization Tool (GA,PSO)
Hi Marcus. I haven't used that File Exchange submission for PSO, but the general workflow in such situations is to: Pass the...

約3年 前 | 0

| 採用済み

回答済み
Simevents: Changing resources in pool
One way is to create a Gate, and not to let entities when the resource is not sufficient. The other way, which is the better but...

約3年 前 | 0

質問


How to train a deep or shallow network embedded into another system?
I need to embed a deep or shallow network into another algorithm to do certain jobs. How can I calculate the loss function and p...

3年以上 前 | 0 件の回答 | 0

0

回答

回答済み
structure variable with double vectors in a field using in a SIMEVENT block is not working
One way to achieve what you want is composite entities. It enables you to use a structure-like dot notation in event actions. Se...

3年以上 前 | 0

回答済み
Fit a power model to the set of data
Type cftool in the command window to open Curve Fitting toolbox. Then you can import your data and fit the power function.

3年以上 前 | 0

回答済み
Eject entity from server when failure occurs
Generally speaking, failures are preempted entities that does not consume resources. They are generated from another entity gene...

3年以上 前 | 0

| 採用済み

さらに読み込む