답변 있음
Tic, Toc Behavior
for the sake of fair comparison, the code below should give you reasonable results %% TicTocLoop=0; TicTocValue=0; for i =...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 2

| 수락됨

답변 있음
Simulink library missing from browser
Run these two lines in Command Window. What did you get? ver simulink open simulink.slx

5년 초과 전 | 1

| 수락됨

답변 있음
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-...

5년 초과 전 | 0

| 수락됨

답변 있음
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.

5년 초과 전 | 0

답변 있음
Access Simulation Time in Simulink Model
The Clock block provides the time.

5년 초과 전 | 1

| 수락됨

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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))

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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 ...

5년 초과 전 | 1

| 수락됨

답변 있음
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 ...

5년 초과 전 | 1

| 수락됨

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 1

답변 있음
PID Control: Varying saturation range?
Saturation Dynamic

5년 초과 전 | 0

| 수락됨

답변 있음
Is there way to configure AUTOSAR components programmatically?
AUTOSAR Programmatic Interfaces

5년 초과 전 | 0

답변 있음
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)

5년 초과 전 | 0

| 수락됨

답변 있음
Unable to resolve the name ('Filename')
n_table= readtable('Veri.xlsx')

5년 초과 전 | 0

| 수락됨

답변 있음
Simulink, Zero-Pole block
Specify "[]" for "Zeros".

5년 초과 전 | 0

| 수락됨

답변 있음
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...

5년 초과 전 | 0

| 수락됨

답변 있음
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 ...

5년 초과 전 | 0

답변 있음
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.

5년 초과 전 | 0

답변 있음
Delete parts of plotted figures?
use patch() or fill()? This one does part of it. patch(xp,yp,'white')

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
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...

5년 초과 전 | 0

답변 있음
How to make input values go into a matrix set?
InputStr= input(' Enter coordinate point location (x,y)','s'); Command Window: >> 2 , 4 PointA=str2num(InputStr)

5년 초과 전 | 1

답변 있음
i dont know what is this answer
The value is too big to show "real number" >> a=1000 a = 1000 >> format ShortEng >> a a = 1.0000e+003

5년 초과 전 | 0

| 수락됨

답변 있음
block power of 3
Product block with 3 inputs Fcn block specified as "u^3"

5년 초과 전 | 0

답변 있음
How to correctly set instance parameters of model reference?
In the referenced model, you need to create workspace variables, set 'ParameterArgumentNames' first as described in the document...

5년 초과 전 | 1

더 보기