photo

Andrew Davies


Last seen: 6 mesi fa Attivo dal 2018

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

2 Domande
4 Risposte

Cody

0 Problemi
7 Soluzioni

ThingSpeak

1 Pubblico Canale

RANK
13.946
of 299.784

REPUTAZIONE
3

CONTRIBUTI
2 Domande
4 Risposte

ACCETTAZIONE DELLE RISPOSTE
50.0%

VOTI RICEVUTI
1

RANK
 of 20.803

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
47.568
of 165.909

CONTRIBUTI
0 Problemi
7 Soluzioni

PUNTEGGIO
80

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
1 Pubblico Canale

VALUTAZIONE MEDIA
30

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 1
  • Solver
  • First Answer

Visualizza badge

Feeds

Visto da

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

6 mesi fa

Domanda


Web site preferences in help browser
I just installed R2021a, and selected the web option for the help. On every session, the first time I start the help browser (e....

oltre 4 anni fa | 3 risposte | 1

3

risposte

Canale


BrewHund

oltre 5 anni fa

Risposto
"Quality" property of VideoWriter object doesn't do anything. How to get higher quality mp4 video?
I have the same issue. The default quality is terrible, which makes the MPEG-4 format unusable for me.

quasi 6 anni fa | 0

Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

oltre 6 anni fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

circa 7 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

circa 7 anni fa

Risolto


Max Change in Consecutive Elements
If an array is given as input then find the index of consecutive elements that represent maximum change. Example: Input ...

circa 7 anni fa

Risolto


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

circa 7 anni fa

Risolto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

circa 7 anni fa

Risposto
Implementing Sobel Gradient without image package
kx= [1 ,0 ,-1; 2,0,-2; 1, 0 ,-1]; ky= [1,2,1; 0,0, 0; -1, -2 ,-1]; H = conv2(im2double(my_img),kx,'same'); ...

oltre 7 anni fa | 0

Risposto
Need help resolving error "Index exceeds matrix dimensions"
Your problem is that the loop starts with x=0. You then try to access C(x). Arrays start indexing at 1 in MATLAB, so you can't h...

oltre 7 anni fa | 0

Risposto
How to binarize a signal?
Depends on the criteria you want to use to create your binary signal, but simply using a comparison operator on an array works. ...

oltre 7 anni fa | 0

Domanda


Can I change the interpolation used in images shown in a GUI?
I often display images in a resizable GUI. The interpolation used on the image to make it fit in the specified axis provides poo...

oltre 7 anni fa | 1 risposta | 0

1

risposta