Answered
For Loop Iterator Not working as expected.
You need to understand the difference between simulation steps and iteration steps. It looked like you ran simulation for 20 sec...

7 years ago | 0

Answered
For Iterator Block Not present in Library , Any Idea ?
I looked and my library is the same as yours. The "For Iterator" block can't be used alone anyway so I don't think this is an is...

7 years ago | 0

| accepted

Answered
changing diagional values with different values
n=5; a=magic(n); b=a; index=sub2ind(size(a),1:n,1:n); b(index)=0; s=sum(b,2); b(index)=s;

7 years ago | 0

Answered
Loading and saving huge matrices in Simulink
Can't use .mat file? Try Simulink Data Dictionary.

7 years ago | 0

Answered
Sum variable size chunks in array
B=mat2cell(A,size(A,1),v); C=cellfun(@(x) sum(x(:)),B) or should be this B=mat2cell(A,size(A,1),v); C=cell2mat(cellfun(@(x) ...

7 years ago | 0

Answered
Run simulink until trigger
Use the "Stop Simulation" block in Simulink->Sinks

7 years ago | 0

| accepted

Answered
replace with nans after condition
A(A<0.15*A_max)=nan

7 years ago | 0

Answered
Coder - Create constant for specifying array size
Please refer to the document Code Generation for Variable-Size Arrays web(fullfile(docroot, 'simulink/ug/what-is-variable-size...

7 years ago | 0

Answered
Why can't i create graph with two matrices in SIMULINK?
Not sure what is the block type for the bottom one, FromWorkspace? Anyway, you need to understand the difference between MATLAB...

7 years ago | 1

| accepted

Answered
How can i edit an object of the type SimulationOutput?
Just double click it in Workspace editor or run "open varname" for API web(fullfile(docroot, 'simulink/slref/simulink.simulat...

7 years ago | 0

Answered
How to import column data from multiple Excel files with different number of rows?
Since each file contains different number of rows, you will need to use cell array for this. Change inside the loop to Time{K}=...

7 years ago | 2

| accepted

Answered
How can i test interface signals between subsystems?
If the signal goes directly from Subsystem1 to Subsystem2, then by definition their values are the same. Why would you still wan...

7 years ago | 0

Answered
splitting matrix into separate elements
Drop a Constant block, specify the value as [1;2;3], connect it to a Demux block, specify the "Number of outputs" as 3. Connect ...

7 years ago | 1

Answered
How can i find input and output signal names for a 'line' in MATLAB?
It will be easier if you construct a simple model and run this example. L = find_system(gcs,'FindAll','on','type','line'); k=1...

7 years ago | 0

| accepted

Answered
Size mismatch error when trying to find a row in an array that is the same as a variable vector.
The problem is here. If target is 1x2 and waypoints is nx2, you can't do waypoints==target waypoints = [100 150; 200 400; 17...

7 years ago | 0

Answered
Replace a scaler with NaN
https://www.mathworks.com/matlabcentral/answers/57444-faq-why-is-0-3-0-2-0-1-not-equal-to-zero

7 years ago | 0

Answered
Using assignin with array indexing
prepare the full assignment statement and use evalin().

7 years ago | 1

| accepted

Answered
Simulation of transfer function with variable denominator
You can implement this transfer function using an Integrator block, a Gain block (or a Product block) and a Sum block with a fee...

7 years ago | 0

Answered
List of all subfolders and theire subfolders etc.
Yes. list=dir('**/*.*') will do it. Then check for list.isdir

7 years ago | 3

| accepted

Answered
How do I stop new simulink windows from stealing focus?
What Simulink window? If it is brought up by open_system(), you can use load_system() instead.

7 years ago | 0

| accepted

Answered
Why the first number is not displayed? [SIMULINK]
For matrix formats, each row of the matrix has a time stamp in the first column and a vector containing the corresponding data s...

7 years ago | 1

| accepted

Answered
A(B)=0 What is its meaning?
B is a logical index matrix. You can see the value is 1 (true) or 0 (false) wherever the corresponding value in A is greater tha...

7 years ago | 0

| accepted

Answered
Simulink: get range of values from lookup table
TableData=1:10; dStart=3; dEnd=6; index=and(TableData>=dStart, TableData<=dEnd); SelectedData=TableData(index) SelectedData...

7 years ago | 0

| accepted

Answered
I am not able to change compiler using Mex command to vc++
Follow this page and find the "supported compilers" for R2016a. https://www.mathworks.com/support/requirements/previous-release...

7 years ago | 0

Answered
Only the value corresponding to the last loop of a for loop being saved in the output array
find() could find more than one match. See "help find"

7 years ago | 1

Answered
Problems with saving large workspace
You might consider Tall Arrays web(fullfile(docroot, 'matlab/import_export/tall-arrays.html'))

7 years ago | 0

Answered
Where is the address of simulink or matlab example offered by itself in my PC?
You mean file location? Run this command which sldemo_suspn_3dof

7 years ago | 0

Answered
Smoothdata- undefined function 'smoothdata' for input arguments of type 'double'
Do you have other smoothdata() function or smoothdata as a variable in base workspace? Anyway, run "which -all smoothdata" to f...

7 years ago | 0

Answered
How do we keep Simulink Signal definitions and Bus Element definitions in sync?
Use Simulink.Bus.createObject(model,blocks) to create the bus object once all signals are defined, instead of define the bus obj...

7 years ago | 0

Load more