回答済み DataSet vs ModelDataLogs data retrieval
Hi Cynthia!
The Dataset object contains Signal objects, and the data in the Signal object - what you describe as 'the output st...
回答済み Undefined function or variable
Hi Theresa,
I see a few issues that are preventing your code from running. For starters, the code at the end of your script ...
7年以上 前 | 0
回答済み Creating a Responsive GUI Within Simulink
Hi Luke,
What version of MATLAB/Simulink are you using? I think there are a couple blocks that could help you.
If your ve...
7年以上 前 | 0
| 採用済み
回答済み Calculate stuff during Simulink-Simulation
What version of Simulink are you working with? In 18a, you can use the <https://www.mathworks.com/help/simulink/ug/iterate-model...
回答済み Scope display from Simulink within MATLAB GUI
What version of Simulink do you have? If you have 18a, you can use the <https://www.mathworks.com/help/simulink/ug/iterate-model...
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because
6 = 1 + 2 + 3
which can be displa...
約8年 前
解決済み
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so:
x = [1 2 3 4]
Commas are optional, s...
回答済み Rerun Simulink without compiling
Hi matquest,
You can enable fast restart using the <https://www.mathworks.com/help/simulink/slref/model-parameters.html Fast...
約8年 前 | 0
回答済み Warning message from signals comparing
Based on my understanding of what you want to do, I think that the Simulation Data Inspector programmatic interface should help....