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

quasi 5 anni fa | 1

| accettato

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

quasi 5 anni fa | 1

| accettato

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

quasi 5 anni fa | 0

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

quasi 5 anni fa | 0

| accettato

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

quasi 5 anni fa | 0

| accettato

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

quasi 5 anni fa | 0

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 2

| accettato

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

circa 5 anni fa | 0

Carica altro