Respondida
Problem with loop index
Calculate the indices of all the rows you want to delete , then delete them all in one go afterwards, as e.g. rowsToDelete = [...

casi 6 años hace | 1

Respondida
Array indexing nth spaced element
a( 1:n:end )

casi 6 años hace | 0

| aceptada

Respondida
How to remove outlier by 2.5 standard deviations from the mean?
Looking at the help in doc filloutliers this should work: filloutliers(A,'center','mean','ThresholdFactor', 2.5) replacing A...

casi 6 años hace | 1

| aceptada

Respondida
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 );

casi 6 años hace | 1

| aceptada

Respondida
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...

casi 6 años hace | 1

| aceptada

Respondida
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...

casi 6 años hace | 0

Respondida
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...

casi 6 años hace | 0

| aceptada

Respondida
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...

casi 6 años hace | 0

| aceptada

Respondida
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...

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 1

| aceptada

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

casi 6 años hace | 1

Respondida
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.

casi 6 años hace | 1

| aceptada

Respondida
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...

casi 6 años hace | 1

| aceptada

Respondida
" 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...

casi 6 años hace | 0

Respondida
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=...

casi 6 años hace | 1

| aceptada

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

casi 6 años hace | 1

| aceptada

Respondida
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 ...

casi 6 años hace | 1

| aceptada

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 0

Respondida
[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...

casi 6 años hace | 1

Respondida
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...

casi 6 años hace | 1

| aceptada

Respondida
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 ...

casi 6 años hace | 0

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

casi 6 años hace | 1

| aceptada

Respondida
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...

casi 6 años hace | 1

Respondida
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 ...

casi 6 años hace | 0

Respondida
[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...

casi 6 años hace | 0

Respondida
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...

casi 6 años hace | 0

Respondida
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...

casi 6 años hace | 0

Respondida
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 ...

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

Cargar más