回答済み
I can't open configuration parameter in simulink
Remove that "C:\WINDOWS\system32" from your MATLAB path. It was trying to call the built-in "ver" function but your have ver.dll...

7年弱 前 | 0

回答済み
Model Compilation Through M-Script
sort_slx_files(i).name is a string, that is the cause of the error. use eval([sort_slx_files(i).name,'([],[],[],''compile'');']...

7年弱 前 | 0

| 採用済み

回答済み
How to display Subsystem Input Port Number in Simulink
This might be close. Right click the Subsystem block, click "Signals & Ports"

7年弱 前 | 0

回答済み
Simulink change detection from MATLAB
Right click this "From Workspace" block in your model, select "Properties", select the "Callbacks" panel, select the "CopyFcn" i...

7年弱 前 | 0

| 採用済み

回答済み
How to find unused parts of a simulink model?
Simulink Coverage might be able to help.

7年弱 前 | 0

回答済み
Simulink Configuration - Diagnostics - Stateflow - Unexpected Backtracking
It applies to both chart with states or chart of "ladder logic". It is looking at a junction Does not have an unconditional tr...

7年弱 前 | 0

| 採用済み

回答済み
How to save data to existing text file with old data
I guess the key point is to use fid=fopen('FileName','a+t'), open or create file for reading and writing; append data to end of ...

7年弱 前 | 1

回答済み
How to validly change a value with unit C to a value with unit K in simulink 2019a?
Use the Unit Conversion Block

7年弱 前 | 0

| 採用済み

回答済み
Adding state flow blocks in simulink models automatically
Create Charts by Using the Stateflow API

7年弱 前 | 0

回答済み
how to regenerate .p code when I DO have the original .m file?
In the directory of RequestGUI.m, run pcode RequestGUI and then copy the RequestGUI.p file See "doc pcode" for more info.

7年弱 前 | 0

回答済み
TUV-SUD certificate
You can search and find it at TUV SUD website. https://www.tuev-sued.de/product-testing/certificates

7年弱 前 | 0

| 採用済み

回答済み
Limit the chaning rate of a signal
Use the Simulink Rate Limiter block.

7年弱 前 | 0

| 採用済み

回答済み
How can I change the values of edit boxes in a mask?
Just use get_param(gcb,'BC') set_param(gcb,'BC','1');

7年弱 前 | 1

| 採用済み

回答済み
slprj folder gets too large
You can just delete the \slprj folder. It could be that the folder has accumulated many temparory files for many models for a lo...

7年弱 前 | 0

回答済み
Copy Figure in high quality
In my experience, using Metafile (or sometimes called enhanced metafile) has better quality shown in Word and later in PDF file....

7年弱 前 | 0

回答済み
could anyone help me how to group the numbers into sets
How do you want to group your sets? See the help or doc of mat2cell. There are examples. You should be able to figure it out.

7年弱 前 | 0

回答済み
Start Simulink Model with App Designer and run simultaneously
f14; set_param('f14','SimulationCommand','start'); set_param('f14','SimulationCommand','stop')

7年弱 前 | 1

| 採用済み

回答済み
How can we set parameter values like Minimum or Maximum for a Slider and bind it to a tunable block like a Constant, using matlab commands?
"abc" marks the string data type, which is introducted in R2016b. You can just use 'Binding' in R2015b.

7年弱 前 | 1

回答済み
How can I use Bus creator signal and Memory Block with initial conditions together?
"LettersBus" here is just a signal label, or the name of the bus. You can't assign it as the initial condition of the Memory blo...

7年弱 前 | 1

| 採用済み

回答済み
Port Width or Dimension Error: Signal wire adding an additional element in a simulink
Check the dialog of the Mux block. It could be specified as [1 2]. Change it to be 2.

7年弱 前 | 0

回答済み
Simulink S-function builder reading inputs
"u" is usually referred as inputs, "y" is usually referred as outputs. You need to go through the S-Function Builder Dialog Box...

7年弱 前 | 0

回答済み
Recursively save referenced models
Try option 'SaveDirtyReferencedModels' doc save_system

7年弱 前 | 0

回答済み
Can't open example openExample('stats/TrainARegressionEnsembleExample')
You need to have the "Statistics and Machine Learning Toolbox". Run "ver stats" to check

7年弱 前 | 0

回答済み
How to write a Questions that requires Yes or No asnwer
You need to wrap the code in a function so you can use "return" to terminate the program based on the input. function test wa...

7年弱 前 | 0

回答済み
Matrix function [row:column] help
It must mean to be RowColumn = [row,column]

7年弱 前 | 0

回答済み
May be a Phishing Mail received?
GetFeedback Inc. was accquired by SurveryMonkey. Both are legit companies providing online survery services. However, someone ...

7年弱 前 | 0

回答済み
How to write a Questions that requires Yes or No asnwer
wall ='Y' while wall == 'Y' building_id = input('Enter the building ID >', 's'); wall = input('Enter a Wa...

7年弱 前 | 0

回答済み
Simulink Pop Up Message
Use Assertion block.

7年弱 前 | 0

| 採用済み

回答済み
How to delay signal input ?
A step function controls a swithch block to switch the signal.

7年弱 前 | 0

さらに読み込む