Réponse apportée
Check that point doesnt lay on line in Simulink block diagram
Checking whether a point lays on any existing line will be very difficult. The answer to the OP's question seems to be utilizing...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to count the amount of times a specific number appears on an output wave?
Compare your signal with the value of 2, if greater than 2, output true, otherwise false. The output is a square wave. Use this ...

plus de 5 ans il y a | 0

Réponse apportée
Syntax error in Simulink
Define a set of example value for u(1) to u(7) in MATLAB, copy and past your expression picece by piece in small parts and execu...

plus de 5 ans il y a | 0

Réponse apportée
Format output with constant display values
%% X2=5.6; period=60; fprintf('2*pi*%g/%g\n',X2,period);

plus de 5 ans il y a | 0

Réponse apportée
Tic, Toc Behavior
for the sake of fair comparison, the code below should give you reasonable results %% TicTocLoop=0; TicTocValue=0; for i =...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to load a cell array into a Simulink model?
According to this: Data Types Supported by Simulink, neither "cell array" nor "function handle" is mentioned. I don't know how y...

plus de 5 ans il y a | 0

Réponse apportée
My simulink model seems to not receiving proper variables from workspace or not returning proper value to workspace.
I am trying to find the document link but could't. I thought it was in "doc sim". The problem could be explained by the way sim...

plus de 5 ans il y a | 2

| A accepté

Réponse apportée
Simulink library missing from browser
Run these two lines in Command Window. What did you get? ver simulink open simulink.slx

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to create/access and update global variables in Simulink using Data Store Memory block
Follow the example here. https://www.mathworks.com/help/releases/R2020b/simulink/ug/using-global-data-with-the-matlab-function-...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Programmatically make library targetlink compliant
I used to have it. I believe the command is tl_prepare_system(). See the document in your TargetLink installation.

plus de 5 ans il y a | 0

Réponse apportée
Access Simulation Time in Simulink Model
The Clock block provides the time.

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
PAUSING on function call - matlab
The call of another function might be dependent on a particular condition inside this function. So it is not ideal or practical ...

plus de 5 ans il y a | 0

Réponse apportée
How to draw only a part of a known curve?
x=1:0.1:10; y=sin(x); index=and(x>3, x<6); plot(x(index),y(index))

plus de 5 ans il y a | 0

Réponse apportée
Simulink signal sequence from Matrix with feedback input
Have a logic to determine if the output value meets a target value (within threshold or steady state for a period of time), outp...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
fopen just works inside of a loop
Whatever data you need from the text file, you could read it once, store it in a variable and use it in the loop. You wouldn't d...

plus de 5 ans il y a | 0

Réponse apportée
Simulink function to detect Step time
Use the rising edge of the step signal to trigger a triggered subsystem, which contains a Clock block. When it is triggered, it ...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Matlab Function, switch case Problem
This is a floating-point data equal or non-equal comparision problem. Do this to get an idea. >> 1-1/3==2/3 ans = logical ...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Activation Date and the Validation Date
I used to have this type of license. Apparently, Mathworks periodically "validate" the license, just to make sure everyone is ho...

plus de 5 ans il y a | 0

Réponse apportée
How does one make clickable links to execute MATLAB commands from Simulink?
Run 'sl_subsys_semantics' in Command window to open the example model. Any block can be double clicked to open another model. Ri...

plus de 5 ans il y a | 1

Réponse apportée
PID Control: Varying saturation range?
Saturation Dynamic

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Is there way to configure AUTOSAR components programmatically?
AUTOSAR Programmatic Interfaces

plus de 5 ans il y a | 0

Réponse apportée
size mismatch in matlab function block
[1 2]*[2 2; 2 2] is correct. [1 2].*[2 2; 2 2] is wrong (without implicit expansion)

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Unable to resolve the name ('Filename')
n_table= readtable('Veri.xlsx')

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Simulink, Zero-Pole block
Specify "[]" for "Zeros".

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Data store memory storage class
Create a Simulink.Signal object in the workspace and you can use DataStore Read/Write block anywhere in the model. You can speif...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Track Simulink slx Files
Simulink .slx file IS binary format so you really don't have a choice. Previous .mdl file is textual but it is not wise to rely ...

plus de 5 ans il y a | 0

Réponse apportée
How to save the time of the simulink simulation on matlab?
Use the Clock block in your Simulink model. It outputs the simulation time. Do whatever you want.

plus de 5 ans il y a | 0

Réponse apportée
Delete parts of plotted figures?
use patch() or fill()? This one does part of it. patch(xp,yp,'white')

plus de 5 ans il y a | 0

Réponse apportée
Programming Problem on code
t1 doesn't contain t=0.2 and t=0.6. Not sure if it is correct or there is a typo. You can do repmat(y,1,10) or as many times as...

plus de 5 ans il y a | 0

Réponse apportée
Matrix input/output to a Matlab function block in simulink
Use a Constant block, specify the value as the variable in the base workspace, then you will be able to use it, no matter what i...

plus de 5 ans il y a | 0

Charger plus