Simulink® is an environment developed by The MathWorks for multidomain simulation and Model-Based Design for dynamic and embedded systems.
0
votes
0answers
10 views
Circular Buffer in Simulink
I would like to implement a very hugh (10^6 Elements - fixed size) circular buffer in pure simulink model (no further toolboxes, no s-function).
At some points I need to read some elements ...
1
vote
3answers
25 views
Simulink - What connector implements 1 input to 2 identical output
I'm writing a simulink model in which I would like to distribute a single input with dimensions of 1024X2 to two (identical) outputs.
I guess it should be pretty straight forward but I could not find ...
0
votes
2answers
35 views
Extensive comparison between SIMULINK and LabVIEW
I am trying to determine which of these two to buy for my work. I have used SIMULINK but not LabVIEW. Is there anyone who has used both and would like to provide some details? My investigation ...
0
votes
0answers
24 views
text/excel input for simulin
I have a simulink model which I am trying to convert to a standalone .exe file. However, Simulink only accepts .mat as an input and the people who are supposed to use my code don't have access to ...
2
votes
0answers
12 views
BeagleBoard/Simulink - Capture data from external command into variable
I'm trying to capture the output from a sensor attached my BeagleBoard xM while running the compiled code externally on the hardware from Simulink. I have the output being piped to a scope and I get ...
0
votes
1answer
15 views
Freqeuncy content of a signal inside a simulink model using embedded matlab function block?
I am trying to acquire the frequency information about a displacement signal(e.g., Vx) while the simulation is running.
My idea was to make use of the fft command supported by Embedded Matlab ...
0
votes
2answers
56 views
Error due to variable size data in Matlab function block
I have a problem that many others had before, so I read some discussions and references before asking the following:
I have a Matlab function block in Simulink, which would like to be a modulator. It ...
3
votes
1answer
38 views
How to run simulink simulation and matlab script simultaneously
I'm trying to run Simulink model and at the same time receiving and processing data in a Matlab script, and sending the result into Simulink to change the behavior of the model.
Since the Matlab ...
0
votes
1answer
31 views
Convert an array of data to a timeseries object
I have a 10000x43 array that represents test data taken from a data acquisition hardware. The first column is the time vector and the remaining columns are each channel. I also have a 1x43 cell array ...
1
vote
3answers
37 views
How to run a simulink model in batch (multiple jobs) on multiple cores?
I have a Simulink model that, before starting, execute a script (in the callback) (let's call the script constants.m) to set various constants and parameters in the base workspace. Now, I would like ...
0
votes
1answer
42 views
Transformation 2 input 2 output transfer function into state space model using MATLAB
I have 4 transfer function that are G11, G12, G21, and G22. And how do I convert this 4 transfer function into a state space model? The following are my codes, however, the results of state space ...
0
votes
1answer
19 views
Creating a powercurve in an function block from table of values
I would like to create a 'Matlap function' block in Simulink for simulating an wind power plant with real data. Input should be wind speed, output power.
So far I struggle creating the function from ...
0
votes
1answer
17 views
Build simulink blocks with relational operators
How to build the simulink blocks equivalent to below statement.
if((In1 == In2) || (In3 != In4))
{
SubSystem1(In5);
}
Thanks in Advance.
0
votes
1answer
27 views
Simulink From Workspace: can't use timestamps from matrix
I'm using the simulink block From Workspace to read in some audio data provided by a script. I have formatted the data in a matrix with 2 columns, the first is the timestamp and the second is the ...
0
votes
2answers
40 views
Getting data from MATLAB Simulink every 0.008s in .txt file
I need to get data from my simulink model, write it to txt file, have another program read it, and this every 0.008s.
Is there any way to do it? All i could get is to get data into workspace
Also ...
0
votes
0answers
23 views
How to set a variable stop time in simulink?
for a simulation in simulink i need a variable stop time.
The stoptime depends on a event in the simulation.
Is there a way to set the stop time to infinity and say stop,if the event is triggered?
...
-3
votes
0answers
29 views
How to design the capacitor value for the voltage source converter [closed]
I am doing project in harmonic elimination using shunt active filter with voltage source converter (VSC)configuration in Matlab Simulink. My rating of the system is 230 KV, 200 MVA with converter as ...
3
votes
1answer
22 views
How to eliminate data 0 in matlab simulink
I'm a foreigner. I'm not good at english.
I have question about matlab simulink. I have a lot of data that include 0 but i don't need 0 because i would like to square.
For Example 17/0 zero can ...
0
votes
1answer
27 views
Inconsistency between Simulink Scope and its Matlab plot obtained using to Workspace block
I'm running a SimEvents simulation using Variable-step discrete solver. I save a signal data using a 'to Workspace' block, but the plot that I obtain is different from the one shown in the 'Scope' ...
0
votes
2answers
59 views
How to export simulink data to workspace during simulation?
I want to retrieve the data from simulink during simulation, and use serial network function to send these data to another program. Because I need to use another program to do some tricks and send ...
0
votes
2answers
38 views
Function blocks and subsystems open in a new window
I use Simulink with many Subsystems. If I open a Block, a new window will appear.
That's quit annoying, if you open 10 blocks.
I know there must be a possibility to change that behavior. So that ...
1
vote
0answers
22 views
Matlab Animation with Simulink
Are there other methods to carry animation of compex translational or rotational motions in matlab except using native VRML editor and Simulink 3D Animation?
-2
votes
0answers
35 views
Create MATLAB model to generate C target code [closed]
I am new to MATLAB coder. I need to generate below target C code from matlab model.
struct XPoint
{
int x;
int y;
};
XPoint* xchangexy(XPoint *start_point)
{
XPoint *end_point;
...
return end_point;
...
0
votes
1answer
43 views
How to set simulink model parameter from GUI during simulation?
I want to set the gain(value of K) in the simulink block when this model is simulating.
I created a GUI contains a button and an edit text(tagged "text_box"), and the callback function of this ...
0
votes
1answer
28 views
Is there a way to monitor a local variable on a running real time software, other than copying it to a memory location or defining it as a static?
Example:
int Global;
void outputFunction(void) {
int local1;
int local2;
local1 = 10;
local2 = 5 + local1;
Global = local2;
}
in the previous example local1 and local2 are not ...
0
votes
1answer
35 views
Matlab function inside Simulink gives parse error
I have included the Matlab Function block in a Simulink diagram to call a matlab function.
Now when I want to simulate the Simulink diagram, I get the error:
Errors occurred during parsing of ...
-3
votes
0answers
32 views
how can i sort random numbers in ascending with MATLAB Simulink Stateflow? [closed]
Please Help.
I have 11 random numbers from "random number block" in MATLAB Simulink and i have to sort of them in ascending shape. How can i do this with stateflow chart without using “Embedded ...
1
vote
1answer
48 views
Using Embedded Matlab Function
Good day!
Please consider the following:
I want to generate a square wave using the Matlab function square() in Simulnk using "Emebedded Matlab Function". I tried the same by using the ...
0
votes
1answer
57 views
How to make linear transfer function in Simulink?
Basicly I need to make k*(T*s+1) transfer function block in Simulink.
In Matlab it's easy as can be, I just make denominator lower then numerator and everything is fine. But when I'm trying to make ...
1
vote
0answers
51 views
Using fwrite in MATLAB to graph constant double values in Simulink Scope blocks?
I am currently trying to use UDP to send constant values from MATLAB to Simulink and then use Simulink to graph these values. Here is an image of the MATLAB code, Simulink block diagram and the graph ...
-3
votes
2answers
39 views
Matlab Simulink Model of nonlinear Model
I'm trying to create a Matlab simulink model of the following equation:
I am very new to simulink and need some help getting started.
0
votes
0answers
58 views
Discrete transfer fcn (Z-transform) - Simulink
in Simulink i have a simple constant block with value 1 , its connected to discrete transfer function(Z-Transform) with this parameters
Numerator=1
Denominator=[1 -1]
sample time=1
the function ...
-2
votes
1answer
88 views
convert matlab m file into vhdl
Iam trying to convert .m file of matlab into vhdl code. I know this topic has been discussed over the help forums, but still the literature did not proved to be fruitful.
Kindly can anyone help in ...
-5
votes
0answers
24 views
how to construct block diagram to find velocity if acceleration and time is given using simulink
How can I construct a block diagram to find velocity if the acceleration and time is given using simulink?
0
votes
0answers
37 views
Mathworks – ARM Target uVision issue
I am attempting to generate c code from simulink that opens in uVision4 and can be flashed onto the stm32f4-discovery board. I know people have done this with the MCBSTM32F200 dev boards, but when ...
0
votes
0answers
27 views
Running a filter at a high speed
I'm writing a signal processing software in CVI.
I've got a signal, transmitted to the computer via USB at a very high speed (~50K).
I want to filter it in RT.
In order to do it I created a filter in ...
0
votes
0answers
74 views
Open Matlab/Simulink file and select block from Java GUI
I would like to open a Matlab/Simulink file from a GUI (Java/Eclipse), select a certain block within the simulink model, and somehow get back the path of that block.
I know how to implement a Browse ...
0
votes
0answers
16 views
Notify destroyed simulink debugger handle
I have a problem with my matlab implementation. I have a matlab m-file in which I open simulink debugger with sldebugui( 'Create', name ) command.
I want to wait until the gui element is closed.
...
1
vote
1answer
79 views
Converting simulink blocks to code for a GUI?
I would like to create a GUI in MATLAB that has two sliders that can be used to adjust the value a and b. I know I can get the GUI to open simulink and have simulink do this and then packet the ...
0
votes
2answers
37 views
how to convert the control design from simulink to C
I have designed a control system in simulink for my project. Now i need to convert this design into C code. But presently no specific hardware processor has been decided on which the code will reside. ...
1
vote
0answers
22 views
Conditional #include if sfunction block is present in model
I'm creating a Simulink (Embedded Coder) Target and some sfunction drivers for that target. In the main template file (TLC) I need to include some header file and call an initialization function if at ...
1
vote
1answer
48 views
Implementing a complex function in Simulink
In Matlab's command window I obtained several equations which look like:
Tc1 = (- 2*J2*cos(t3)*sin(t1)*sin(t3)*n^2 + 2*J2*w3*sin(t3)*n)/cos(t2) - d2 + cos(t2)*(J2*cos(t3)*sin(t1)*sin(t3)*n^2 + ...
0
votes
2answers
87 views
simulink run with gui matlab
i have a Gui and a Simulink Model, i wanna enter some value into the textfield in the Gui and press start Button and after this, my simulink model should take these values and run, the result should ...
1
vote
2answers
81 views
simulink, problems with compiler
On my computer I installed matlab 2013a and visual studio 2012 professional (that contains c++ 2012). As i read on the mathworks website this compiler is compatible with matlab 2013a.
I'm running the ...
0
votes
0answers
17 views
Erros in generating automatically code in Simulink Stateflow
i'm using simulink and stateflow to model a system. However i have a lots of error when
i generate automatically the code like conflicting types for ' ' e redeclaration of
enumeration ' '. How can ...
0
votes
0answers
34 views
Simulation time and System time
In my simulink scheme, I need to consider a bloc into an internal time, which is different to the simulation time t, and I don't know how to proceed, even if I think it is possible with S-functions.
...
0
votes
1answer
45 views
Matlab Simulink with Stateflow chart not outputting in scope with warning
I have a Simulink model with a Stateflow chart with an outflow scope to output array/vector variables into. I am using the latest version of Matlab 2013a. This may have something to do with this ...
0
votes
1answer
117 views
Gain value for PI controller using Simulink
I am doing project in Matlab Simulink. I want to find the proportional and integral gain value for PI controller. Is there any way to find the PI controller gain value which does not have transfer ...
0
votes
0answers
22 views
Basic Simulation with Simulink/Excel
I am trying figure out the best way to solve this as professionally as possible using open Simulink or just Excel.
Lets say we have a 24/7 gun range with four booths to shoot from, we have been ...
0
votes
2answers
51 views
Where can I find Simulink Projects?
Can anyone suggest me a site where I may found some basic projects for Matlab simulation. Thesis prjoects etc. Basically I need to understand best practices. I'm beginner and could not understand too ...

