Respondida
Modify the storage class in the data dictionary programmatically
https://www.mathworks.com/help/simulink/ug/store-data-in-dictionary-programmatically.html

alrededor de 5 años hace | 0

Respondida
How to programmaticaly set storage class (2020a) in Data Store Memory ?
if "DSM_Block" is a block handle, you can use get/set if "DSM_Block" is a block path, use set_param/get_param

alrededor de 5 años hace | 0

Respondida
Error:Brace indexing is not supported for variables of this type.
Run "dbstop if error" in MATLAB Command Window first and then run your optimization. Hopefully you will be able to see the line ...

alrededor de 5 años hace | 0

| aceptada

Respondida
provide Input port data during simulation
https://www.mathworks.com/help/simulink/ug/signal-loading-techniques.html#bu110x_-1

alrededor de 5 años hace | 0

Respondida
How to vary Gain in Simulink dependent on input's amplitude and phase during runtime ?
Use the Product block. The Gain block is an operation of multiplication, right?

alrededor de 5 años hace | 0

Respondida
How to delete a node from DOM object?
use delete() and then write the xDoc to an XML file.

alrededor de 5 años hace | 0

Respondida
How to access Simulink Model callbacks like PreLoadFcn, InitFcn, StopFcn from matlab command window?
Model='f14'; open_system(Model) get_param(Model,'PreLoadFcn'); set_param(Model,'PreLoadFcn','YourFunctionName')

alrededor de 5 años hace | 0

| aceptada

Respondida
Neglecting difference between two values if it is very small so that value1= value2
To compare element by element, abs(C) < Tolerance To compare the two vectors as a whole, all(abs(C) < Tolerance) or use isme...

alrededor de 5 años hace | 0

Respondida
How to loop through structure with words?
fn=fieldnames(reflectance.nhy1); for k=1:length(fn) reflectance.nhy1.(fn{k}) end

alrededor de 5 años hace | 0

| aceptada

Respondida
write two inputs to interpreted MATLAB block
Specify as "mod1(u(1),u(2))". Look at the Help of the block.

alrededor de 5 años hace | 0

| aceptada

Respondida
Why is the look-up table in Simulink must faster than the interp3 function in Matlab script?
Might it be that interp3() is a M-script function, not a built-in (or written in C) function? Try to specify all the optional ...

alrededor de 5 años hace | 0

Respondida
What does the Following mean in Simulink
That is the Index Vector block. "Ldq" is a vector. The above math is: Out1=In1*Ldq(2)/Ldq(1)

alrededor de 5 años hace | 1

| aceptada

Respondida
How can i have a loop in every step time in Simulink?
Use For Iterator Subsystem

alrededor de 5 años hace | 0

| aceptada

Respondida
Insufficient number of outputs from right hand side of equal sign to satisfy assignment
nonlcon() is a defined function so fun=@nonlcon should be enough. It might be easier if the function has only one return variabl...

alrededor de 5 años hace | 0

Respondida
theoretical framework of support for S-Functions
S-Function is used broadly. doc: web(fullfile(docroot, 'simulink/slref/sfunction.html')) example: open_system('sfundemos')...

alrededor de 5 años hace | 0

Respondida
error in repeating sequence
It's better to provide the error message. I assume the error is about the time data that you provied. There are duplicated val...

alrededor de 5 años hace | 0

Respondida
Sizeof double float int etc
Look at the .bytes returned by whos() a=false(5); aInfo=whos('a') b=zeros(5); bInfo=whos('b')

alrededor de 5 años hace | 0

Respondida
Is There a Way to Find all Shadowed Functions on the matlabpath?
I am not aware of any direct method. On the other hand, Files=dir('**/*.m') will give you all the M-file names including all sub...

alrededor de 5 años hace | 0

| aceptada

Respondida
How do i know which Simulink Libraries are used in the Program?
license('inuse') tells the "toolboxes" that are used. What you need is libinfo('ModelName'). Most likely, 'Delft_Tyre_dtlib' is...

alrededor de 5 años hace | 1

Respondida
How do I restore matlab to original settings?
In MATLAB, run "restoredefaultpath" to see if you can get your Simulink back to normal. Then try to re-install SpeedGoat.

alrededor de 5 años hace | 0

Respondida
Where to find Variable Size for output of Matlab function in Simulink
double click the MATLAB Function block to open the code editor, Click "Edit Data" button/icon, select the variable on the left c...

alrededor de 5 años hace | 0

| aceptada

Respondida
How to combine matrices with different size but preserve elements with same value?
unique([A;B])?

alrededor de 5 años hace | 0

Respondida
Initializing 1/2 of a row with one value and the other half with another
You mis-understood it. The code involves built-in functions ones() and zeros(). The input arguments are size of the matrix, not ...

alrededor de 5 años hace | 0

Respondida
Error in port widths or dimensions Error.
If your t=sin(0:0.01:30), which is 1x3001 double, you need to make it a column vector and then use the "From Workspace" block. ...

alrededor de 5 años hace | 1

| aceptada

Respondida
How to show the Unit parameter in the signal attrbutes of a constant block?
There is no "unit" property at the Constant block. What you can do is to define a Simulink parameter object. A=Simulink.Paramet...

alrededor de 5 años hace | 0

| aceptada

Respondida
how to rearrage the matrix?
[objectpointsepoch1(:,2); objectpointsepoch1(:,3)]

alrededor de 5 años hace | 1

| aceptada

Respondida
安装waijung第三方工具箱每次打开matlab出现路径警告
I had the same problem and this probem started in R2020a. Every time you started MATLAB R2020a, such a temporary folder is aut...

más de 5 años hace | 0

Respondida
Programmatically change user defined Library objects in Simulink model
In the first part of your code, add_block() is not used properly. You need to specify the full path of both the source and desti...

más de 5 años hace | 1

| aceptada

Respondida
how to move the currently selected port in s function builder
You have only one port so nowhere to move. The buttons are on the left. Insert one more and the other three buttons will be avai...

más de 5 años hace | 3

Cargar más