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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 0

| akzeptiert

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 1

| akzeptiert

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

etwa 4 Jahre vor | 1

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

etwa 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 0

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

mehr als 4 Jahre vor | 2

| akzeptiert

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

mehr als 4 Jahre vor | 0

Beantwortet
check a condition once and remember it later in the code
Potentially you can change your if statement to the following, but it depends on what nu is as this does not seem to be defined ...

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
Variable inside timer callback is lost after first iteration in GUI - undefined function or variable
This seems like the opposite problem to what I originally thought it was as I got distracted by the handles and assumed they wer...

mehr als 4 Jahre vor | 1

Beantwortet
Increase levels on colorbar
If you create the colourbar and keep its handle, e.g hColourbar = colorbar( hAxes ); then you can edit the properties of the c...

mehr als 4 Jahre vor | 0

| akzeptiert

Frage


Working with 1d vector sequences
This is a problem I seem to come up against quite often in Matlab and have never really found a good solution to. Maybe there i...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
(Index in position 1 exceeds array bounds (must not exceed 1). error is popping up where it does not seem to apply
Well, I don't know about line 12, which (from counting - please indicate which is the line of the error message in future, it wo...

mehr als 4 Jahre vor | 0

Beantwortet
Store only 4 value from a loop
If you have a nested loop like that you would generally want something like x(t,i) = ... with a 2d output to match the 2 neste...

mehr als 4 Jahre vor | 0

Beantwortet
Detecting change in sign of values of a column
NewC = find( diff( sign( Data(:,2) ) ) ) + 1;

mehr als 4 Jahre vor | 1

| akzeptiert

Beantwortet
How to reshape a matrix into nx2 matrix?
reshape( A( :, [ 1:2:end, 2:2:end ] ), [], 2 ) You may wish to change the final two arguments to the reshape command in diffe...

mehr als 4 Jahre vor | 0

| akzeptiert

Beantwortet
Unable to use a value of type cell as an index
You are passing in a variable called title to the second function. This will hide the function of the same name so that this in...

mehr als 4 Jahre vor | 4

| akzeptiert

Beantwortet
Assining fixed color for zero value
Define a colourmap of size n, assuming n is not huge, and then add black to the front of it n = 7; colourmap = [0 0 0; parula(...

mehr als 4 Jahre vor | 0

| akzeptiert

Mehr laden