답변 있음
How to concatenate string cell arrays?
What you need is the Cartesian product of the two sets. MATLAB does not have built-in function, but there are several functions ...

3년 초과 전 | 0

답변 있음
Is there a way to call Continue in a loop less script ?
Instead of calling continue directly, you can set a flag in the inner script. The outer script, which contains the loop, uses th...

3년 초과 전 | 0

| 수락됨

답변 있음
Enlarging y-Axis because text description of two points is overlapping
A simple solution is to add horizontal and vertical offset so that you can better control the position of the labels. x = [6...

3년 초과 전 | 0

| 수락됨

답변 있음
Infinite Loop with conditional statement if
The for loop can be broken using break statement. for if break end end https://www.mathworks.com/help/mat...

3년 초과 전 | 0

답변 있음
Z must be a matrix, not scalar or vector - surface plot
You use surf when you have z value for each combination of x and y vectors. Here, you have x, y, and z vectors, so you should dr...

3년 초과 전 | 0

| 수락됨

답변 있음
Hi everyone, How do I call functions in simevents for selected queues to halt entities blocking them from departing whenever entities with specific attributes are injected into the system (by a deliberate event).
I think you must implement this complex system with MATLAB Discrete-Event System (MDES) only, since you need to iterate over que...

3년 초과 전 | 0

답변 있음
How do you model transfer batching in simevents if you use orders as entities and order quantity as an attribute?
You should use an Entity replicator block, which replicates entities based on the order size. Replicas are production batches af...

3년 초과 전 | 0

| 수락됨

답변 있음
How can I bring 5 variable at 5 different axis angles and plot the correlation coefficient with respect to a base variable.
MATLAB does not have built-in spider plot, AFAIK. The nearest built-in is polarhistogram(). https://www.mathworks.com/help/matl...

3년 초과 전 | 0

답변 있음
Plot of 4 variables with dates(years)
You should read the documentation of plot(): https://www.mathworks.com/help/matlab/ref/plot.html All you need is to define c...

3년 초과 전 | 0

| 수락됨

질문


Loading timeseries data into the deep network designer
I have read and learnt how to train a deep network for forecasting future values of a timeseries here: https://www.mathworks.c...

3년 초과 전 | 답변 수: 2 | 1

2

답변

답변 있음
Using for loop to extract data from a matrix
The break statement terminates the for loop: if j > numel(cavity) break end

3년 초과 전 | 0

| 수락됨

답변 있음
PSO algorithm pv system code
You should formulate your problem based on the scientific literature. MATLAB has built-in PSO, but it only handles unconstrained...

3년 초과 전 | 0

답변 있음
Calculate trends with regression for columns in MATLAB
You can use parfor (parallel for loop) instead of for. The more CPU cores you have, the more speed you gain. https://www.mathw...

3년 초과 전 | 0

| 수락됨

답변 있음
Creating a function with varying numbers of input parameters
You should use Variable-length input argument list using varargin(). https://www.mathworks.com/help/matlab/ref/varargin.html

3년 초과 전 | 1

| 수락됨

답변 있음
Why SimEvents spends so much time
You should run 1000 simulations using sim() in conjunction with SimulationInput objects. With SimulationInput you can define the...

3년 초과 전 | 0

답변 있음
link a custom creation function
1) "If you have a partial initial population, meaning fewer than PopulationSize rows, then the genetic algorithm calls CreationF...

3년 초과 전 | 0

| 수락됨

답변 있음
What information is conveyed by the different colors in Matlab's contourf( ) data plots?
You can turn on the ShowText property of the contour, or add the color bar: x = linspace (-5, 5, 51); y = linspace (-5, 5, 51...

3년 초과 전 | 0

| 수락됨

답변 있음
MATLAB function block error in Simulink
Unlike m-file functions, MATLAB function block does not apply automatic array expansion. The simplest way to overcome is to defi...

3년 초과 전 | 0

| 수락됨

답변 있음
Run a Simulink modell stepwise inside Matlab
You can use MATLAB function block. It is executed on every timestep just like other blocks, and you can return outputs for every...

3년 초과 전 | 0

답변 있음
Create 9x9 matrix with RANDI between [0,2] with each 0,1, and 2 repeating three times each per column.
You can first create a vector with the values you need: Reference = repelem (0:2,3)'; Then you initialize the 9x9 matrix with...

3년 초과 전 | 1

| 수락됨

답변 있음
How can I display the last value obtained in a scope block graph in Simulink?
The Display block shows the numeric output. https://www.mathworks.com/help/simulink/slref/display.html

3년 초과 전 | 2

| 수락됨

답변 있음
Can I use my own timetraces in M/M/1 queue implementation by Simevents?
I think you need a simple M/M/c queue. The example you are trying has components for other purposes, which might have confused y...

3년 초과 전 | 0

| 수락됨

답변 있음
What am I doing wrong?
For drawing multiple line plots at once, you should have one column vector for each line. You just need to have x as a column ve...

3년 초과 전 | 2

답변 있음
How to use the Parallel Computing Toolbox of MATLAB to optimize the parameters of a Simulink model with genetic algorithm?
You should set ga() to pass all of the generation members at once using UseVectorized option. Then you set the objective functio...

3년 초과 전 | 1

답변 있음
How to solve this problem? Error using == Quadratic constraints not supported
QP = Quadradic Programming = Quadradic objective function and linear constraints. QCQP = Quadratically Constrained Quadratic P...

3년 초과 전 | 2

| 수락됨

답변 있음
Small Value bars are missing in bar graph.
You can add a constant to the bars with small values. For example: X (X<4) = X (X<4) + 0.2;

3년 초과 전 | 0

질문


parsim() with fast restart returns different results
I am running multiple simulations using parsim() with fast restart to accelerate execution. However, I have noticed that using p...

3년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
How do you use the NaN function?
You first create the NaN vector using nan(), then fill in the elements. V = nan (500,1); V (124:end) = Data;

3년 초과 전 | 0

답변 있음
How to plot one point in one axis
You should turn off the visibility of the vertical axis. For example: scatter (1,1); ax = gca; ax.YAxis.Visible = 'off'; xl...

3년 초과 전 | 0

| 수락됨

질문


How to assign array values to object.object.property at once using deal?
I know that it is possible to assign the values of an array to object.property using deal(). Is it possible to do such thing for...

3년 초과 전 | 답변 수: 1 | 0

1

답변

더 보기