Answered
Plot Graph with different b Values
There is no declaration of 'r'. I guess it should be instead of 'i'? Not sure what exactly you want to plot and/or how 'M' shou...

meer dan 3 jaar ago | 0

Answered
bars with mean and std on them
replace the XEndPoints/YEndPoints by XData(end)/YData(end): xtips1 = b(1).XData(end); ytips1 = b(1).YData(end); Btw, xtickl...

meer dan 3 jaar ago | 0

| accepted

Answered
How can I separate data that does not fit the required format?
Maybe I didn't get your issue, but what about using "contains" and searching for a specific identifier? E.g. contains([your_hex...

meer dan 3 jaar ago | 0

| accepted

Answered
Index exceeds the number of array elements: in case of for loop.
k4 has 8 members. But the third member of Perm is 8. So plus one leads to 9 which is more than k4 contains k4(Perm(i)+1) = k4(9...

meer dan 3 jaar ago | 1

Answered
Making a change in appdesigner when deployed permanent
You have to use "load" / "save" functions to store and reload your settings. The app does not support permanent changes of the ...

meer dan 3 jaar ago | 0

| accepted

Answered
Concatenate signals ( sine wave and a line )
I guess you want to add a X/Y line after the sine wave, right? In this case you have to concatenate X + t and Y + a in order to...

meer dan 3 jaar ago | 1

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