Answered
How to make subplot accept the positions like matrix?
doc ind2sub This will convert linear indices to n-dimensional subscripts. e.g. [p(1), p(2)] = ind2sub( [3, 3], 2 );

meer dan 4 jaar ago | 1

| accepted

Answered
input vector fra edit text in guide GUI
sscanf( str, '%d' ) or str2num( str ) would both work if the input is e.g. "1 2 3 4 5 6", although the first returns a column...

meer dan 4 jaar ago | 1

| accepted

Answered
Defining a time varying function
if t < t0 result = a; else result = b; end gives what you want for this simple case, provided t0, a, b and t are al...

meer dan 4 jaar ago | 0

Answered
i have different result
Just get rid of the loop and vectorise: ProbDG=1-(1./T); DGT=-log(-log(ProbDG)); It can be done in a loop, but it's the end o...

bijna 5 jaar ago | 0

| accepted

Answered
What are the options to use a script in app designer? and how to define it?
You don't have to, but you should want to as scripts are not suitable for going beyond just trying things out. Once you want to...

bijna 5 jaar ago | 0

| accepted

Answered
How to get handle to legend in a specific axes?
Legends are parented by the figure, not the axes, so you get a list of figure children like this: >> get( gcf, 'Children' ) an...

bijna 5 jaar ago | 0

| accepted

Answered
Combine two or more gaussian components into one Gaussian Mixture (gmdistribution)
Doesn't GC = gmdistribution( [muX; muY], cat( 3, SX, SY ), [1; 1] ); work?

bijna 5 jaar ago | 1

| accepted

Answered
divide 3d matrix (840,64,1536) by 1d matrix (1536,1)
A ./ reshape( B, [1 1 1536] );

bijna 5 jaar ago | 1

Answered
How do I extract the rows that have value 0 in one array from another new array?
newArray( ~thisArray, : ) where thisArray is the one you show here.

bijna 5 jaar ago | 1

| accepted

Answered
What type of data (200 x 200 x 200)
It's an array. A 3d array to be precise, but just an array. A vector (as defined by isvector(...) )is an nx1 or 1xn array A m...

bijna 5 jaar ago | 1

| accepted

Answered
" bsxfun(@rdivide..." Explain Use in Code
rgbh_e = bsxfun(@rdivide, rgbh_e, rgbh_e(4,:)); divides rgbh_e by by the 4th row of rgbh_e, on a per row basis - i.e. each elem...

bijna 5 jaar ago | 0

Answered
In which Matlab version was rng() introduced?
https://uk.mathworks.com/help/matlab/release-notes.html?rntext=rng&startrelease=R2006a&endrelease=R2019b&groupby=release&sortby=...

bijna 5 jaar ago | 1

| accepted

Answered
what is wrong with my script?
2:4 means [2, 3, 4] A( [2 4], [2 4] ) would give what you want.

bijna 5 jaar ago | 1

| accepted

Answered
Arguments block syntax not being recognised
This was only introduced in 2019b (you can see at the bottom of the help page for 'arguments'). It is one of the disadvantages ...

bijna 5 jaar ago | 1

| accepted

Answered
Matrix creation combining vectors
M = [ repmat( V1(:), [numel(V2), 1] ), repelem( V2(:), numel( V1 ) ) ];

bijna 5 jaar ago | 0

| accepted

Answered
Help with restricting input
validateattributes( number, { 'numeric' }, { 'scalar', '>=', 1, '<=', 100, 'integer' } ) You would have to put a message togeth...

bijna 5 jaar ago | 0

Answered
[DISCONTINUED] MATLAB Answers Wish-list #5 (and bug reports)
I realised I posted this in the ancient wishlist thread before. Can we not have some white space back between answers? Since t...

bijna 5 jaar ago | 1

Answered
How to ignore letters in a numeric cell?
cellfun( @(x) str2double( erase( x, 'mm' ) ), pin_radius ) should convert them to an array of doubles. If you are using pre R2...

bijna 5 jaar ago | 1

| accepted

Answered
why do I get Array indices must be positive integers or logical values?
It means pretty much exactly what it says. In Matlab x1, as you create it, is an array of values representing your function at ...

bijna 5 jaar ago | 0

Answered
expand length of matrix to fixed value
t = interp1( 1:108, t, linspace(1, 108, 200 ) ); would be one way to do it.

bijna 5 jaar ago | 1

| accepted

Answered
Create a plot with a drop down menu in an App
app is your main application object. You can add properties to this yourself, which you can then access in any of its functions...

bijna 5 jaar ago | 1

Answered
Area plot does not recognize colormap
What was your 'older Matlab version'? If you keep the handle from an area plot you get an object (or objects, if you feed it a ...

bijna 5 jaar ago | 0

Answered
[DISCONTINUED] Wish-list for MATLAB Answer sections.
Well, after the last update of Matlab Answers my biggest wish is now to put the white space back between the answers! I don't k...

bijna 5 jaar ago | 0

Answered
How to manipulate array?
Just use it! Where you are going to use my_columns, just use number_columns, e.g. newMatrix = zeros( number_rows, number_colum...

bijna 5 jaar ago | 0

Answered
How can I use my CNN after training (Image Recognition)
When you saved the file the network was called 'thisNetwork'. That is what this instruction saves: save('TheTrainedCNN','thisN...

bijna 5 jaar ago | 0

Answered
How to know where the >> are in the command window?
Just use fprintf('AAAAAAAAAAAAAAA\n') instead and it will put the new line at the end so that the >> will be on the next line ...

bijna 5 jaar ago | 0

Answered
simple way of matrix array resorting
Q = [A', B', C'];

bijna 5 jaar ago | 0

Answered
Avoiding many if-Statetments in a for-loop
Something like this would seem to do the job, off the top of my head, though I may be over-simplifying it... case1 = V2 && V3; ...

bijna 5 jaar ago | 0

Answered
What does z(1) and z(2) mean in that context?
z(1) and z(2) mean the same as they would in any code - there is an expectation that z is an array with (at least) 2 values, oth...

bijna 5 jaar ago | 2

| accepted

Answered
Index must be a positive integer less than or equal to the number of test sets.
selectBatch(k) is a cell array, which clearly is not an integer. selectBatch{k} may be what you want instead. That said, you...

bijna 5 jaar ago | 0

Load more