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

oltre 5 anni fa | 1

Risposto
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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 1

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

oltre 5 anni fa | 1

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 1

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 1

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

| accettato

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

oltre 5 anni fa | 0

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

oltre 5 anni fa | 1

Domanda


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

oltre 5 anni fa | 4 risposte | 0

4

risposte

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

oltre 5 anni fa | 0

| accettato

Risposto
Rounding set of number to closest number in array
interp1(yaxis,yaxis,x_n,'nearest')

oltre 5 anni fa | 1

Risposto
how to add single quotes ' ' in a string?
a='this include ''single quote'' and others.' b="using 'string' is better"

oltre 5 anni fa | 0

Carica altro