Beantwortet Can MATLAB Fcn block output a bus?
The MATLAB function block is not able to create a bus.
We strongly suggest the use of the Embedded MATLAB function that allo...
fast 14 Jahre vor | 0
| akzeptiert
Beantwortet problem with positioning in GUI
If you are working with normalized units you should use position values between 0 and 1 to set the position.
The following co...
Beantwortet Create a vector x with the elements
You can use vector operations on the vector n with elements from 1 to 100:
x = (-1.^n + 1/2*n -1);
to create the x vecto...
fast 14 Jahre vor | 2
Beantwortet Read each columns of xls,csv,... as a matrix
To read an Excel file you should use XLSREAD:
<http://www.mathworks.com/access/helpdesk/help/techdoc/ref/xlsread.html>
The...