Answered
wrong number of rows of cell array using length()-function
You should use the size command to distinguish between row and col. To be more precise: length(X) returns the length of vect...

meer dan 3 jaar ago | 0

| accepted

Answered
How to select a column on basis of some conditions on the rows?
Does this solve your problem? x = x(:, x(1, :) > 0 & x(2, :) > 0 & x(4, :) < 0)

meer dan 3 jaar ago | 0

| accepted

Answered
how to do sum of element of multiple number in matlab?
Not sure whether I got your issue. But in case you want to summarize all members of m starting at index 1, up to each member of ...

meer dan 3 jaar ago | 0

Answered
Cut out all of a square array except for a specified NxN section in the middle.
Try this: rowOffset = (rowdim-m)/2; columnOffset = (columndim-m)/2; centerMatrix = x(rowOffset+1:end-rowOffset,...

meer dan 3 jaar ago | 1

Answered
load x,y
There are certainly different ways to do so. E.g.: x = 1:1:10; y1=[0.5 1.7 1.75 1.9 2 2.1 2.4 2.6 2.7 2.9 ]; y2=[0.7 1.8 1...

meer dan 3 jaar ago | 0

Answered
Remove rows/columns with same elements
unique(sort(A, 2), 'rows')

meer dan 3 jaar ago | 0

Question


Data Type Conversion does not convert to boolean when attached to transfer function block
Hello, I attached a "Data Type Conversion" block to a PT1 low pass filter (transfer function) trying to convert the ouptut sign...

bijna 4 jaar ago | 1 answer | 1

1

answer

Question


report generator can't handle blanks in path name
Hello, in order to use the report generator of Matlab I created the needed template sheet with a relative path to an image whi...

ongeveer 4 jaar ago | 0 answers | 0

0

answers

Question


How to print certain block of Simulink model
Hello, I'm trying to get an image of a specific block inside a Simulink model - programmatically. I tried the following: 1)...

meer dan 5 jaar ago | 1 answer | 0

1

answer

Answered
dynamically change simulink library path
Hello, many thanks for your efforts. Meanwhile I found a workaround which does the job. It points to the direction Fangjun pr...

meer dan 5 jaar ago | 0

| accepted

Question


dynamically change simulink library path
Hello, without changing the Simulink model I'd like to switch between two source libraries for the blocks the model contains....

meer dan 5 jaar ago | 2 answers | 0

2

answers