回答済み
How to iterate through the alphabet like Excel does
In old versions of MATLAB, you can find that function inside xlswrite.m. I used to copy that for my own use. In R2019b, it seem...

5年以上 前 | 0

回答済み
Changing frequency of input data
resample() timeseries object also has resample() method. see web(fullfile(docroot, 'matlab/ref/timeseries.resample.html')) t...

5年以上 前 | 1

| 採用済み

回答済み
How to rearrange data by cutting rows and placing in new columns or using cell array?
reshape()?

5年以上 前 | 1

| 採用済み

回答済み
How can i add linear second-order transfer function to the simulink system?
drag and drop this block from library https://www.mathworks.com/help/simulink/slref/transferfcn.html

5年以上 前 | 0

回答済み
Where is help relop?
It is true. The explanation: \Program Files\MATLAB\R2019b\toolbox\matlab\ops\relop.m is gone in R2020a, that is why "help relo...

5年以上 前 | 1

| 採用済み

回答済み
How to discover all submodels within a simulink model programmatically ?
Using the example model 'f14'. Play with some other options of find_system() f14; SubSysBlocks=find_system('f14','BlockType','...

5年以上 前 | 0

| 採用済み

回答済み
How can I get archived documentation for a R2012b release?
These are the archived document. R2012b is not there. Follow link to contact support to see you can get it. https://www.mathwor...

5年以上 前 | 0

回答済み
Unable to remove elements from array and I don't know why
Do the loop backward should resolve the problem. I hope you would understand the reason. for i=length(x):-1:1 Also, better to ...

5年以上 前 | 1

回答済み
select values from matrix
loc=sub2ind(size(A),idx,1:size(A,2)); >> out=A(loc) out = 1 7 3 9 5

5年以上 前 | 1

| 採用済み

回答済み
Variable sample time with different time values
This seemingly simple question is actually quite complex. The input data is non-periodic. To hit every value-changing data poi...

5年以上 前 | 0

| 採用済み

回答済み
command window change colors
Click "Preferences", then "Colors"

5年以上 前 | 1

| 採用済み

回答済み
How do I keep unused root-Level Inports in the generated code
In your model configuration, search for "block reduction", un-check it. I assume you must have the root-level Inport blocks ter...

5年以上 前 | 0

回答済み
Can I simulate a transfer function in simulink in real time and interact with the model using the GUI?
Yes, thought it requires this toolbox: Simulink Desktop Real-Time

5年以上 前 | 0

回答済み
Error Unable to delete elements from this array because dimension 1 has fixed size 1000
You kept asking similar questions on this topic. You need to ask your question precisely and accurately. The key point for this ...

5年以上 前 | 0

回答済み
Displaying images by using a variable
It can be done but less ideal. a=input('enter the number','s'); file=[a,'.jpg']; imshow(file); Better file=uigetfile('se...

5年以上 前 | 0

| 採用済み

回答済み
Incorrect use of '=' operator
Both codes run properly if run alone. You can "clear all" and then try it. A potential problem is with inputdlg(). "agea" is a ...

5年以上 前 | 0

回答済み
How to find the unused bus objects from base workspace in Simulink?
Simulink Data Dictionary (SLDD) has this capability. In fact, when you migrate base workspace to a .sldd file, it only migrates ...

5年以上 前 | 0

| 採用済み

回答済み
unable to get_param signal name , error in using for loop
Your code is correct, except that No "end" statement for the for-loop Remove the "{" and "}" lines (meant to enclose the for-...

5年以上 前 | 0

| 採用済み

回答済み
function with two inputs.
Run this to return two outputs height_cm=input('enter your height in cm: '); weight_kg=input('enter your weight in kg: ') [he...

5年以上 前 | 0

| 採用済み

回答済み
Algorithmically create block matrices
cat() vertcat()

5年以上 前 | 0

| 採用済み

回答済み
Simulink can't see variables in base and model workspace
You need to add "A" as a parameter for the MATLAB Function block. Double click to open the "MATLAB Function" block editor, clic...

5年以上 前 | 1

| 採用済み

回答済み
License checkout failed. User/host not on INCLUDE list for Neural_Network_Toolbox.
When you see the toolbox after "ver" command, it means the toolbox is installed in your computer. You need a license file or che...

5年以上 前 | 0

| 採用済み

回答済み
How can I plot a graph from Simulink while simulating?
Use the blocks from the Simulink, Dashboard library, e.g. Dashboard Scope block. https://www.mathworks.com/help/releases/R2020b...

5年以上 前 | 0

回答済み
Remove "Offset" caption from a Simulink graph
Must be something else. I have R2020b Update 3. I tried and it didn't have "Offset=0" text. Check MATLAB preference, figure cop...

5年以上 前 | 1

| 採用済み

回答済み
Simulink: Dragging blocks directly into connections
Draging and dropping the block to the line will always make it auto connected. I've verified this in R2020b. You just need to be...

5年以上 前 | 0

回答済み
Simulink Control Design license, license checkout failed
(1) Run this: flag=license('checkout','Simulink_Control_Design') license('inuse') (2) To check if you have "Simulink Contro...

5年以上 前 | 4

| 採用済み

回答済み
Loop for removing values from a column vector
%% v=[1 2 1 3 7 7 5 4 8 6 9 2]; for k=length(v):-1:2 if v(k)<=v(k-1) v(k)=[]; end end

5年以上 前 | 0

回答済み
how to list first 50 prime number after 229 in 10 x5 matrix
a=primes(1000); b=a(a>229); c=reshape(b(1:50),10,5)

5年以上 前 | 0

回答済み
Block Parameters are Always Deleted
That is expected behavior. I don't know why it was designed that way. To avoid the problem, do either one of these: Create the ...

5年以上 前 | 0

| 採用済み

回答済み
Im Having issues making the IF conditions read the input placed from options.
use option=input('prompt','s') to enter a string, not numerical data

5年以上 前 | 0

さらに読み込む