Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
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;

plus de 7 ans il y a | 0

Réponse apportée
Loading and saving huge matrices in Simulink
Can't use .mat file? Try Simulink Data Dictionary.

plus de 7 ans il y a | 0

Réponse apportée
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) ...

plus de 7 ans il y a | 0

Réponse apportée
Run simulink until trigger
Use the "Stop Simulation" block in Simulink->Sinks

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
replace with nans after condition
A(A<0.15*A_max)=nan

plus de 7 ans il y a | 0

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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}=...

plus de 7 ans il y a | 2

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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 ...

plus de 7 ans il y a | 1

Réponse apportée
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...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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

plus de 7 ans il y a | 0

Réponse apportée
Using assignin with array indexing
prepare the full assignment statement and use evalin().

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

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

plus de 7 ans il y a | 3

| A accepté

Réponse apportée
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.

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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"

plus de 7 ans il y a | 1

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

plus de 7 ans il y a | 0

Réponse apportée
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

plus de 7 ans il y a | 0

Réponse apportée
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...

plus de 7 ans il y a | 0

Réponse apportée
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...

plus de 7 ans il y a | 0

Charger plus