回答済み
Simulink Block vs Simulink Model
A Simulink model is made from Simulink blocks. The sum of all its Simulink blocks plus something else (configurations, parameter...

5年以上 前 | 1

回答済み
Compare data at consecutive timesteps during runtime in Simulink
Use a Unit Delay block, the input is altitude, the output is the "previous value" of the altitude.

5年以上 前 | 0

| 採用済み

回答済み
Testsuite for Matlab 2011b?
For many common cases, using the Signal Builder block to provide the testing signals/vectors is sufficient. You can create multi...

5年以上 前 | 0

| 採用済み

回答済み
License problem on my account
check your eligibility https://www.mathworks.com/products/matlab-online.html#license-types

5年以上 前 | 1

回答済み
Sending Live Simulink Values To Gui
Instead of creating your own GUI, I would suggest using the Simulink Dashboard Blocks. https://www.mathworks.com/videos/dashbo...

5年以上 前 | 1

回答済み
how to change suddenly dropping output by a gradually dropping output?
The Rate Limiter block is usually used for this. It is used to generate a slope after (not before) the falling or rising edge. B...

5年以上 前 | 0

回答済み
Extract a single signal from signal array
Use the Selector block from Signal Routing library. Click Help to find example models.

5年以上 前 | 0

回答済み
What does M([1:1 2:3], [1:0 2:3]) mean?
First, run this line by line in Command Window to figure out what it does 1:5 1:0.5:3 5:-1:1 Then understand that [1:1 2:3] ...

5年以上 前 | 0

回答済み
How can I concatenate these two arrays in this manner?
C=[A;B]; C=C(:)';

5年以上 前 | 0

回答済み
Can MATLAB code in an M-file successfully call slCharacterEncoding() without a Simulink license?
Seems Yes. >> license inuse matlab >> slCharacterEncoding() ans = 'windows-1252' >> license inuse matlab

5年以上 前 | 0

回答済み
R2020a Update 4 does not work
Your update is not installed. Should look like this: >> ver matlab -----------------------------------------------------------...

5年以上 前 | 0

回答済み
Error using cellstr. Shows error for element that doesn't exist.
I can duplicate the error using this simple example. So the problem is TblAllInfo{1,2}. It is the 154th element. It is not a cha...

5年以上 前 | 0

回答済み
Asynchronous function-call Initiator
The functon-call trigger port needs to be connected with a function-all signal, usually from a function-call generator block. Do...

5年以上 前 | 0

回答済み
MATLAB Borrow License Without Network
Yes, there is such a capability built-in. You need to contact your network license administrator to see if it is enabled though....

5年以上 前 | 0

回答済み
How to update "hidden" param in standalone reference configuration?
You need to open the data dictionary and change this parameter in the saved reference configuration directly.

5年以上 前 | 0

回答済み
Setparam on a nested block
There is no limitation regarding how deep can you go to reference the block. The only thing that might prevent you from doing th...

5年以上 前 | 0

回答済み
MATLAB 2020a and prior versions generate pcode warning
Someone must have modified and saved the ver.m file by mistake. ver.m and ver.p are built-in files and shouldn't be modified. Re...

5年以上 前 | 0

回答済み
Contributors metainfo: reputation and more
Congratulations to Walter Roberson for surpassing 100,000 points! I still don't think that it is possible.

5年以上 前 | 1

回答済み
Run 2016a but have 2014a as well for older software?
You can have multiple versions of MATLAB installed. They don't interfere with each other. So go ahead and install as many versio...

5年以上 前 | 0

回答済み
Add Second Axis Manually
plot(1:10); yyaxis right;

5年以上 前 | 0

| 採用済み

回答済み
create a vector of 0 and 1s that takes 1 at a fixed interval
m=2; N=100; a=zeros(1,N); a(m+1:m+1:N)=1

5年以上 前 | 0

| 採用済み

回答済み
Error with using sprintf
>> a={'abc'} a = 1×1 cell array {'abc'} >> sprintf('%s',a) Error using sprintf Function is not defined for 'cell' in...

5年以上 前 | 0

| 採用済み

回答済み
Simulink online not available?
check your eligibility at Simulink Online

5年以上 前 | 0

回答済み
How to use different sampling times for 2 blocks in the same simulink model?
It looks like a MATLAB Function block. Right click it, select "Block Parameters (Subsystem)", specify sample time as 0.1. You mi...

5年以上 前 | 0

| 採用済み

回答済み
How to resolve issue of finite derivative after some time interval in simulink
You have a division block prior to the Integrator block. Can you check to see if you have a "divided by zero" problem? What is t...

5年以上 前 | 1

回答済み
Why the function that I created won't be called?
Your function "relaxed" does not have any return values so you can't do "A=relaxed" because "A" can't be assigned. That is the e...

5年以上 前 | 0

回答済み
Using a function_handle 'variable' from workspace in simulink
function handle is not supported by Simulink. Run "showblockdatatypetable" "I want to change the whole function without opening...

5年以上 前 | 1

| 採用済み

回答済み
find indicies of maximum and minmum elements of an array in its each segmented smaller arrays, plus mean
Here is one way to find the max index without for-loop. Not sure if it is faster for larger data %% A=1:100; indexA=[8 16 ...

5年以上 前 | 0

回答済み
find minumum indices of one array in another array
You have the assumption that A is incremental. If it is always true, it can be done like this. %% A= [ 47 100 153 207 ...

5年以上 前 | 0

| 採用済み

回答済み
to workspace block logging in real time?
In that case, you need this toolbox Simulink Desktop Real-Time. It can slows down your simulation to try to match real time.

5年以上 前 | 0

さらに読み込む