回答済み
When is the 'ModelReferenceVersionMismatchMessage' Simulink model parameter editable?
Try this model='sldemo_mdlref_basic'; open_system(model); get_param(model,'ModelReferenceVersionMismatchMessage') set_param(...

6年以上 前 | 0

| 採用済み

回答済み
why setdiff function ignores to delete the element in the first column of an array
You've show its value is 1.5707963267948966192313216916398. It is the floating point data precision issue.

6年以上 前 | 0

| 採用済み

回答済み
Finding identical rows in 2 tables
look for doc in "doc ismember". There is an example for table rows found in another table.

6年以上 前 | 1

| 採用済み

回答済み
Why Integrator with Wrapped State don't wrap the lower limit? (R2018b)
It should not be like that. Create a simple new model to verify it. Grab a Sine Wave block, change the amplitude to be 3, Connec...

6年以上 前 | 0

回答済み
gathering two cells in confusion matrix
If you have the Image Processing toolbox, a=[1 1 3 2; 1 0 2 1 ; 7 4 3 1; 5 6 3 7]; fun = @(block_struct) sum(block_struct.dat...

6年以上 前 | 0

| 採用済み

回答済み
Running via matlab command an .exe file and putting direct the input in cmd
Create a text file called "InputString.txt". Inside it, type in your input file name, in your exampe, file.txt Test it in Cmd w...

6年以上 前 | 0

回答済み
Sum of matrix signals in Simulink
In your MATLAB Function block, open the editor, click "Edit Data" icon, find the data for output 3, set the size. Or, in your S...

6年以上 前 | 0

回答済み
How to programmatically detect the difference between a figure and a random dialog or waitbar
Can you use the 'menubar' property? If not, run get(f), get(w), get(d) to compare all properties to see if you can find any uniq...

6年以上 前 | 1

| 採用済み

回答済み
Is it possible to have a table with a numerical index instead of strings?
Keep in mind that in MATLAB, indexing like data(RowIndex, ColIndex) can be numerical or logical. The numerical index is 1-based....

6年以上 前 | 0

回答済み
How to update a signal in Simulink
The true meaning of the equation is x=previous_x+a*b. Use the "Delay One Step" block (also called z-delay, unit delay, 1/z). The...

6年以上 前 | 0

| 採用済み

回答済み
element-wise exponential of matrix returns all 1s
It's a matter of display. Run this and show the result again. format long

6年以上 前 | 0

回答済み
How to figure out the number of rows for headers?
If you use [Num, Txt, Raw]=xlsread(), can you figure it out based on the numerical, text and raw data?

6年以上 前 | 0

回答済み
Show Simulink simulation progess inside Matlab skript without too much performance loss.
Add a Clock block to your root level model, or you can divide it by the totoal simulation time to get the percentage. You can us...

6年以上 前 | 0

回答済み
Does my license currently include Simscape Multibody?
Simscape Multibody is a separate toolbox other than Simscape. You can run "ver" in Command Window to see if you have "Simscape M...

6年以上 前 | 0

| 採用済み

回答済み
How to hide code in S-Function block in simulink?
You have your source code (in .c or .m or Fortran), compile them into a .mex (or .dll) file using mex() command, then you can us...

6年以上 前 | 0

| 採用済み

回答済み
Storing found values in array
I had this example code for answering a similar question. I think you can utilize it as an example for storing while-loop result...

6年以上 前 | 0

回答済み
Produce equality matrix based on elements in vector.
Like this? A=randi(10,5,1); B=randi(10,5,1); k=3; C=(B==A(k))

6年以上 前 | 0

回答済み
How can I insert a code that is in the MATLAB function block of my model in a report?
myMFBConfigobj = get_param(gcb, 'MATLABFunctionConfiguration') The source code is in .FunctionScript web(fullfile(docroot, 'si...

6年以上 前 | 0

| 採用済み

回答済み
Plot(x,y2) with if condition y1(x)
You can check the output of y1>0. It's a vector so shouldn't be used in if statement. what you need for y2 is index=y1>0 plot...

6年以上 前 | 0

| 採用済み

回答済み
Help with while loop programming
Almost there! Give it a meaningful but not confusion variable name, and don't repeat the same calculation. %this function will ...

6年以上 前 | 2

| 採用済み

回答済み
Negative memory usage?
According to the document ProcessMemUsage—The amount of memory consumed in each phase. Sum the ProcessMemUsage across all the p...

6年以上 前 | 0

| 採用済み

回答済み
Storing Outputs of a two output function recursion
Yes. There is no limitation on the number of outputs for recursive function.

6年以上 前 | 0

| 採用済み

回答済み
Struct contents reference from a non-struct array object in yout.getElement
Like you said, In workspace yout is 7254x1 double, so you can't do vsignal= yout.getElement('VC_line'); You probably mixed up w...

6年以上 前 | 0

| 採用済み

回答済み
How to check memory occupancy of a Simulink Model?
No such capability as of R2019b. We've submitted similar requests to the Mathworks. There are something that might be helpful. ...

6年以上 前 | 0

| 採用済み

回答済み
outputname of variable depending on inputname
utilize inputname()

6年以上 前 | 0

回答済み
Signal Dimension Error WITHIN Default Simulink Cross Product Block
I ssume you didn't make any change to the "Add" block. Don't specify the size or dimension of your downstream signal (where the ...

6年以上 前 | 0

回答済み
How can I convert a uint12 data to an int12 data in Simulink?
If you have the fixed point toolbox, then it is straightforward. Define your data types and then use them anywhere in Simulink,...

6年以上 前 | 0

| 採用済み

回答済み
How would I rewrite this loop to work?
Hint: need to be "T=T+1;" To plot to a different figure, run figure() first.

6年以上 前 | 0

回答済み
parse error message. "Parse error at '<='. usage might be invalid syntax"
Looks like it needs to be "while i<=3"

6年以上 前 | 0

回答済み
Help With Nested IF Statements!!!
if T > 0 & T <= To needs to be if T(j) > 0 & T(j) <= To

6年以上 前 | 0

| 採用済み

さらに読み込む