Answered
How to close a dos window after a .exe is finished running?
I have provided this solution in several cases. You just need to have an empty line with a carriage return in that text file. ...

3 years ago | 0

| accepted

Answered
How to get the label name when I enable the property of signal propagation
ph=get_param('PathToTheFromBlock','PortHandles'); get_param(ph.Outport,'PropagatedSignals')

3 years ago | 0

Answered
Is it possbile to protect the code of a matlab live script?
make a p code. doc pcode

3 years ago | 0

Answered
How can I remove this projection from Matlab plot?
Using mesh(), not using meshc(), will not show the contour.

3 years ago | 0

| accepted

Answered
How do I compile a simulink model without running it?
See if this is what you need. It is equivalent to manual press Ctrl+D set_param(model,'SimulationCommand','Update')

3 years ago | 0

Answered
In Merge block, For execution of more than one subsystem(Nested If loops) I have an error saying Ensure that the Merge block output is updated by only one of its input signals
You need to re-construct your model. At any time, there should be at most one of the inputs at the Merge block being updated. A...

3 years ago | 0

| accepted

Answered
Numerical Precision Physics Calculations
eps(5.89e7) It means that around 5.89e7 (which is a large value), the nearest values that can be represeted by double data type...

3 years ago | 1

| accepted

Answered
How to Remove Customizatize Simulink Menu items
Most likely, it is added through a sl_customization.m file provided in the third party software . If you know the installation ...

3 years ago | 0

| accepted

Answered
Sum: every nth column and groups/blocks of columns
x=magic(12); y=reshape(x,12,4,[]); z=squeeze(sum(y,2))

3 years ago | 0

Answered
Block Error: Loading matlab workspace table data in Simulink model 2-D Lookup Table?
The data in your MATLAB workspace is in an Table object. see class(ELSE2021New). Simulink doesn't recognize this type of objec...

3 years ago | 1

| accepted

Answered
i dont understand the matlab fucntion any help ?please
You need to double click that "MATLAB Function" block. It will open in an Editor. There will be MATLAB code in that function. Mo...

3 years ago | 0

Answered
Compatibility of Matlab 2017b S-function C-Code on a HIL D-Space setup that is using Matlab 2017a?
The best way is for you to export R2017b version model to a R2017a version model so your customer can use it. Of course, that re...

3 years ago | 0

Answered
How can I resolve this error ?
You specified input data, but there is no root level input ports, which means no input data is needed. If you've done this manu...

3 years ago | 3

| accepted

Answered
Creating a simulink signal with Boolean datatype
What you did is correct. However, it may cause error if the incoming signal connected to the Inport block "In8" is not boolean. ...

3 years ago | 1

| accepted

Answered
How can I show NaN as Error not Exist?
I guess the true intension is like the code below. If ErrorT is initially NaN, then "ERROR DOES NOT EXIST" will be displayed. If...

3 years ago | 0

Answered
Accessing Mixed-Signal Blockset in Simulink
Mixed-Signal Blockset is introduced in R2019a. It is a separate toolbox, which will need to be acquired separately. If you don't...

3 years ago | 0

Answered
Clock/pulses controller in Simulink
If you want to adjust the width or phase while the simulation is running, then you can use the Slider block. Add the Slider bloc...

3 years ago | 0

Answered
How can I use named RAM arrays in the Simulink 1-D Interpolation block?
Lookup Table Dynamic

3 years ago | 0

| accepted

Answered
How to rename signal in Signal Data inspector ?
Double click that signal line in the Simulink model, give it a valid signal name, the signal name will then appear in the Data I...

3 years ago | 0

Answered
How to Make a Simulink Scheduler for a Matlab Block Function to run each 40 ms of simulation?
Use a Function-call Generator block, specify the sample time. Put the MATLAB Function block inside a triggered subsystem, specif...

3 years ago | 0

| accepted

Answered
How can i pass a string from simulink mask to matlab function block
With R2018a (with the String Constant block) or later, you can do this, with a little extra effort. Add a 'String Constnat' blo...

3 years ago | 0

Answered
Is there a way to pass the name of an input signal to a matlab function block in simulink?
Not through passing but you can get it through get_param(). Note that some functions are not supported for code generation. fun...

3 years ago | 0

Answered
Simulink does not support 'Array' format for logging multiport data. Change the logging format of the Scope to 'Dataset', 'Structure', or 'Structure with time'.
See document web(fullfile(docroot, 'simulink/gui/format.html')) To use Array format, all logged states and outputs must be: ...

3 years ago | 1

Answered
Implicit scalar expansion doesn't work in MATLAB function block.
Good news. It seems it is available in R2021b, but not in R2021a. Check https://www.mathworks.com/help/releases/R2021b/coder/u...

3 years ago | 0

| accepted

Answered
Use #define values from a Matlab function
You might need to add the C header file and source C code file to the model, Ctrl+E, Simulation Target, Follow the example in...

3 years ago | 0

Answered
Trying to read a new licence into LMTool on Linux
Name primary license file as license.dat, name secondary license file as xxx.lic. Put both in matlabroot\licenses folder and the...

3 years ago | 0

Answered
Difference between successive rows in a column
a=magic(6); b=diff(a(:,4)) a(2:end,end+1)=b

3 years ago | 0

Answered
How to make this string a = '(0 0 0)' into a double b = [0 0 0]?
a = '(12 2.8 1.22)'; b=sscanf(a,'(%f %f %f)') b=transpose(sscanf(a,'(%f %f %f)'))

3 years ago | 0

Answered
Sharing Custom Simulink Library via Toolbox
https://www.mathworks.com/help/matlab/matlab_prog/create-and-share-custom-matlab-toolboxes.html https://www.mathworks.com/help/...

3 years ago | 0

Answered
Compare all the signals from 2 data inspector or .mat files
This is exactly what Simulink Data Inspector does. Follow the documentation and examples. https://www.mathworks.com/help/simul...

3 years ago | 0

Load more