Beantwortet
Loading a fig file without opening
f=openfig('power.fig','invisible') a=get(f,'Children') ... close(f) clear f

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Is there a way to define a new built-in function?
I would think NO but it does not really make any difference. If there is a way, you would have to modify some existing files in ...

mehr als 5 Jahre vor | 1

Beantwortet
why do my output variables not update when I use the sim function
Here it goes again. Please see this. Mathworkers need to pay attention to this. This trap seems unreasonable. https://www.mathw...

mehr als 5 Jahre vor | 0

Beantwortet
Sample Time and simOut Interaction
Usually it is because the fixed step size is too big for the model to simulate accurately. There are many solution to this. The...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Simulink menu bar is missing Matlab R2020b,academic use
If you are taking about the conventional "File", "Edit" menu, yes, they are long gone. It is mapped to "Simulink Toolstrip" Lo...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Create a value map from input signal in a Simulink block
1-D Lookup Table

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Why should a model not contain continuous states for production code generation?
On a model with continuous states, you can run a simulation with fixed step size using a solver, e.g. ode4. In fact, the simulat...

mehr als 5 Jahre vor | 0

Beantwortet
Ideal Torque Source to Asynchronous Single phase Induction Motor
change the "Mechanical input" to be "Mechanical rotation port" for the motor

mehr als 5 Jahre vor | 1

Beantwortet
Writing text in fraction in Mask in Simulink
Click "Help" in the Mask Editor to see the supported function for icon drawing. Search document for "Greek Letters and Special C...

mehr als 5 Jahre vor | 0

Beantwortet
Programmatically initialize from source Model workspace
Try this: hws = get_param(bdroot, 'modelworkspace'); hws.DataSource = 'MAT-File'; hws.FileName = 'params'; hws.reload;

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Replacing multiple columns elegantly with a vector
You want to replace two columns but only provided one column of data. Provide the matching data. M(:,replace_column) =repmat(5,...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Import data from Excel
xlsread() tries to be smart. It tries its best to give you the numerical data so it truncates the leading Nan. Run this to see ...

mehr als 5 Jahre vor | 0

Beantwortet
only three pulse generation
Signal Builder block

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Issue with path is breaking some built-ins
Did you run "restoredefaultpath" to restore the path? Usually it should resove any problem related to the path. Run "which -al...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to generate complex signal in Simulink
Use the Exp block (https://www.mathworks.com/help/simulink/slref/mathfunction.html) with https://www.mathworks.com/help/simuli...

mehr als 5 Jahre vor | 0

Beantwortet
RTW Programmatically Set Define Flag
That info is saved with your model, you can set it up set_param('ModelName','CustomDefine','-DBOOTLOADER')

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Convert cell of matrix into one matrix
cell2mat()

mehr als 5 Jahre vor | 0

Beantwortet
Opening a simulink model through same instance : App designer
When you open a Simulink model, the model is always opened in the built-in, Mathworks' Simulink GUI. I don't think you can open ...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
How to run a .m file in MATLAB APP DESIGNER and load the parameters inside it in workspace.
evalin('base','YourMFile')

mehr als 5 Jahre vor | 6

| akzeptiert

Beantwortet
How to integrate nested structures in C with Simulink?
myType1 would be a Simulink.AliasType, myStruct would be a Simulink.Bus Look in document for this objects and you should be ab...

mehr als 5 Jahre vor | 1

Beantwortet
Add data type conversion block in simulink model using script
Do a loop, using these functions delete_line() add_block() add_line()

mehr als 5 Jahre vor | 1

Beantwortet
Is it possible to converte ideal angular velocity source signal rad/s to rpm ?
Do the conversion using a Gain block or use this block https://www.mathworks.com/help/releases/R2019b/simulink/slref/unitconver...

mehr als 5 Jahre vor | 0

Beantwortet
MATLAB Simulink 2007b Programmatic specification of Simulation Targets
Don't have R2007b no more. Tried this in R2011b. It seems to work. get_param(bdroot,'SimUserSources') get_param(bdroot,'SimCus...

mehr als 5 Jahre vor | 0

Beantwortet
How can I merge 6 same-size vectors in simulink to obtain only one output?
The "Sum" block is all you need.

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
how do i determine toolbox dependency when i try to uninstall toolbox ?
The best way is to go to Mathwork website, products, find the toolbox, scorll to the bottom, "view pricing and licensing", then ...

mehr als 5 Jahre vor | 0

Beantwortet
How to use variables from Workspace in Simulink Function block ?
The "Simulink Function Block" defines a "function" that could be scoped and called multiple instances, so I think you have to us...

mehr als 5 Jahre vor | 0

Beantwortet
Get block outport value
select that output signal line, right click, select "properties" See this: https://www.mathworks.com/help/simulink/gui/logging-...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Absence of PV array in Simulink (Matlab2020a)
This is the link for R2020a. Do you have the toolbox installed and license" https://www.mathworks.com/help/releases/R2020a/phys...

mehr als 5 Jahre vor | 0

Beantwortet
Double to Logical convertion in Simulink
Change the settings of the "From File" block. Do not do interpolation or extrapolation. The boolean data type could be saved wi...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Problem with Simscape variable visibility
If I remember it correctly, all you need to do is to give sim() a return variable. Just try it result=sim('threePhaseDiodeRecti...

mehr als 5 Jahre vor | 0

| akzeptiert

Mehr laden