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

etwa 3 Jahre vor | 0

| akzeptiert

Gesendet


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

etwa 3 Jahre vor | 24 Downloads |

Thumbnail

Beantwortet
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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

| akzeptiert

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

| akzeptiert

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

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

etwa 3 Jahre vor | 0

| akzeptiert

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

etwa 3 Jahre vor | 0

| akzeptiert

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

etwa 3 Jahre vor | 0

Frage


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

mehr als 3 Jahre vor | 0 Antworten | 0

0

Antworten

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

| akzeptiert

Mehr laden