回答済み
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...

5年以上 前 | 1

回答済み
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...

5年以上 前 | 1

| 採用済み

回答済み
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.

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

| 採用済み

回答済み
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...

5年以上 前 | 0

回答済み
Round a signal in simulink?
'simulink/Discontinuities/Quantizer'

5年以上 前 | 0

回答済み
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...

5年以上 前 | 1

| 採用済み

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

5年以上 前 | 0

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

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

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

5年以上 前 | 0

| 採用済み

回答済み
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.

5年以上 前 | 1

回答済み
how to get keyboard in matlab
use function input()?

5年以上 前 | 0

回答済み
simulink models with iPad
Would MATLAB Online be a solution?

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

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

5年以上 前 | 0

| 採用済み

回答済み
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 '...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 0

| 採用済み

回答済み
'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" ...

5年以上 前 | 0

| 採用済み

回答済み
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...

5年以上 前 | 0

| 採用済み

回答済み
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 ...

5年以上 前 | 0

回答済み
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...

5年以上 前 | 1

質問


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

5年以上 前 | 4 件の回答 | 0

4

回答

回答済み
how to superscript in subtitle of a figure?
h=suptitle('CH5NO2^+')

5年以上 前 | 0

| 採用済み

回答済み
Rounding set of number to closest number in array
interp1(yaxis,yaxis,x_n,'nearest')

5年以上 前 | 1

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

5年以上 前 | 0

回答済み
How to make alternating signs on a matrix?
There are many ways. This is probably the easiest. E(1:2:end) is the 1, 3, 5,... th element of the matrix E(2:2:end) is the 2,...

5年以上 前 | 0

回答済み
Merging two .sldd without duplicates
using API, you can go through all the entries in the two .sldd files, find duplicate ones and remove them from one of the SLDD ...

5年以上 前 | 0

回答済み
Simulink vector to bit a second
If you want to feed a vector like [1, 0, 1 ... 0], in which every value is either 0 or 1, the total length is 1023, at a rate of...

5年以上 前 | 0

| 採用済み

さらに読み込む