Risposto
I have signal name which is stored in one variable and I want to make that signal as simulink object, could you please help me to create the object
eval([B{1,1},'=mpt.Signal;']); or mptsignal=mpt.Signal; assignin('base',B{1,1},mptsignal)

quasi 7 anni fa | 0

| accettato

Risposto
Using two vectors to get the third one
a=[0 1 4 7] b=rand(size(a)) c=0:23 d=nan(size(c)) d(a+1)=b

quasi 7 anni fa | 1

Risposto
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...

quasi 7 anni fa | 0

Risposto
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'');']...

quasi 7 anni fa | 0

| accettato

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

quasi 7 anni fa | 0

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

quasi 7 anni fa | 0

| accettato

Risposto
How to find unused parts of a simulink model?
Simulink Coverage might be able to help.

quasi 7 anni fa | 0

Risposto
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...

quasi 7 anni fa | 0

| accettato

Risposto
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 ...

quasi 7 anni fa | 1

Risposto
How to validly change a value with unit C to a value with unit K in simulink 2019a?
Use the Unit Conversion Block

quasi 7 anni fa | 0

| accettato

Risposto
Adding state flow blocks in simulink models automatically
Create Charts by Using the Stateflow API

quasi 7 anni fa | 0

Risposto
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.

quasi 7 anni fa | 0

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

quasi 7 anni fa | 0

| accettato

Risposto
Limit the chaning rate of a signal
Use the Simulink Rate Limiter block.

quasi 7 anni fa | 0

| accettato

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

quasi 7 anni fa | 1

| accettato

Risposto
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...

quasi 7 anni fa | 0

Risposto
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....

quasi 7 anni fa | 0

Risposto
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.

quasi 7 anni fa | 0

Risposto
Start Simulink Model with App Designer and run simultaneously
f14; set_param('f14','SimulationCommand','start'); set_param('f14','SimulationCommand','stop')

quasi 7 anni fa | 1

| accettato

Risposto
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.

quasi 7 anni fa | 1

Risposto
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...

quasi 7 anni fa | 1

| accettato

Risposto
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.

quasi 7 anni fa | 0

Risposto
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...

quasi 7 anni fa | 0

Risposto
Recursively save referenced models
Try option 'SaveDirtyReferencedModels' doc save_system

quasi 7 anni fa | 0

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

quasi 7 anni fa | 0

Risposto
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...

quasi 7 anni fa | 0

Risposto
Matrix function [row:column] help
It must mean to be RowColumn = [row,column]

quasi 7 anni fa | 0

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

quasi 7 anni fa | 0

Risposto
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...

quasi 7 anni fa | 0

Carica altro