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

más de 4 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...

más de 4 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...

más de 4 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 5 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 5 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 5 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 5 años hace | 1

| aceptada

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

casi 5 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 5 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 5 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 5 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 5 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 5 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 5 años hace | 1

| aceptada

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

casi 5 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 5 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 5 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 5 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 5 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 5 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 5 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 5 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 5 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 5 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 5 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 ...

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 2

| aceptada

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

casi 5 años hace | 0

Cargar más