Beantwortet
Programming Problem on code
t1 doesn't contain t=0.2 and t=0.6. Not sure if it is correct or there is a typo. You can do repmat(y,1,10) or as many times as...

mehr als 5 Jahre vor | 0

Beantwortet
Matrix input/output to a Matlab function block in simulink
Use a Constant block, specify the value as the variable in the base workspace, then you will be able to use it, no matter what i...

mehr als 5 Jahre vor | 0

Beantwortet
How to make input values go into a matrix set?
InputStr= input(' Enter coordinate point location (x,y)','s'); Command Window: >> 2 , 4 PointA=str2num(InputStr)

mehr als 5 Jahre vor | 1

Beantwortet
i dont know what is this answer
The value is too big to show "real number" >> a=1000 a = 1000 >> format ShortEng >> a a = 1.0000e+003

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
block power of 3
Product block with 3 inputs Fcn block specified as "u^3"

mehr als 5 Jahre vor | 0

Beantwortet
How to correctly set instance parameters of model reference?
In the referenced model, you need to create workspace variables, set 'ParameterArgumentNames' first as described in the document...

mehr als 5 Jahre vor | 1

Beantwortet
How to extract matrix with different starting index for each row?
%% Orig=transpose(reshape(1:20,5,[])) StartPos=[2;1;3;2]; Wid=3; row=repmat((1:size(Orig,1))',1,Wid); col=StartPos+(0:Wid...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
Error while running Cyclomatic complexity check
Press Ctrl+D to update the mode, or better, run a simulation first to make sure your model has no errors first.

mehr als 5 Jahre vor | 0

Beantwortet
help on simulink input
You don't remove the Constant block. You "Connect" the Slider to the Constant block. Double click the Slider, Drag the Constant...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Use Simulation Time of Simulink in Matlab function when threshold is exceeded
Use Step block to specify time and value. This is your threshhold. Use Comparator block to compare your incoming signal with t...

mehr als 5 Jahre vor | 0

Beantwortet
Round a signal in simulink?
'simulink/Discontinuities/Quantizer'

mehr als 5 Jahre vor | 0

Beantwortet
Rate Transition in If-action Subsystems
Let's say your whole model is executed at every 0.1s. At every 0.1 second, the condition is checked and the "If-action" subsyste...

mehr als 5 Jahre vor | 1

| akzeptiert

Beantwortet
How to get Simulation Status correctly?
Use set_param('vdp','SimulationCommand','continue') to change the simulation status, other options are 'start', 'pause','stop'. ...

mehr als 5 Jahre vor | 0

Beantwortet
Plot not showing line fully
Might it contain nan? plot([1:3,nan,nan,4:6])

mehr als 5 Jahre vor | 0

Beantwortet
Problem with conection port/ input port in subsystem
Most likely, you need this "Physical Signal to Simulink Signal Convert" block. https://www.mathworks.com/help/releases/R2020b/p...

mehr als 5 Jahre vor | 0

Beantwortet
Dot indexing is not supported for variables of this type when trying to write value into static text box
set(hObject, 'String', num2str(value)) see this comment ? % hObject handle to edit1 (see GCBO) % handles empty - ha...

fast 6 Jahre vor | 0

Beantwortet
Lookup value in one array based on interpolated point in another?
interp1() in MATLAB "1-D Lookup Table" block in Simulink.

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
How can two people work at the same time at a code
This is a typical source control issue. Take a look at GitHub.com. There is free version available. MATLAB supports Git.

fast 6 Jahre vor | 1

Beantwortet
how to get keyboard in matlab
use function input()?

fast 6 Jahre vor | 0

Beantwortet
simulink models with iPad
Would MATLAB Online be a solution?

fast 6 Jahre vor | 0

Beantwortet
How to find each model uses given block?
You will need to go through a loop, open or load each model, find if particular block exists and then close the model. open_sys...

fast 6 Jahre vor | 0

Beantwortet
How to divide an array into sperate vectors.
use reshape() to transform it to 4x250 or 250x4 then loop through row or column

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
simulink not updating scope
It might be a visual misconception, e.g. the simulation runs too fast for eyes to catch. Change the simulation stop time to be '...

fast 6 Jahre vor | 0

Beantwortet
Simulink-Blockmask: How to add a button and assign a callback by m-file script?
To get mask parameters get_param(gcb,'MaskNames'), or 'MaskVariables','MaskPropertyNameString',... To do mask programmatically...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
'Decimation' Error in Simulink
Follow the link of the error message to find the involved block. You must have provied an incorrect number for the "Decimation" ...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
Referenced Data Dictionaries and Hierarchical Models
You are over-thinking and making it overly complicated. There is no hierarchy for parameters. Simply create Kp1, Kp2, Kp3 or bet...

fast 6 Jahre vor | 0

| akzeptiert

Beantwortet
trying to open .fig file but an error shows
Some times, or many times, when you save a .fig file, there is also a .mat file saved for it. You need both files to be able to ...

fast 6 Jahre vor | 0

Beantwortet
What are the obsessions you saw in MATLAB Answers or in MATLAB programming?
I will start with the popular ones No-looper: don't want to use for-loop One-liner: Must get the result in one line of code G...

fast 6 Jahre vor | 1

Frage


What are the obsessions you saw in MATLAB Answers or in MATLAB programming?
Those obsessions that seem to persist but not necessarly good.

fast 6 Jahre vor | 4 Antworten | 0

4

Antworten

Beantwortet
how to superscript in subtitle of a figure?
h=suptitle('CH5NO2^+')

fast 6 Jahre vor | 0

| akzeptiert

Mehr laden