photo

Andrew Davies


Last seen: 10ヶ月 前 2018 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

2 質問
4 回答

Cody

0 問題
7 解答

ThingSpeak

1 パブリック チャネル

ランク
14,379
of 300,779

評判
3

コントリビューション
2 質問
4 回答

回答採用率
50.0%

獲得投票数
1

ランク
 of 21,084

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
48,969
of 170,997

コントリビューション
0 問題
7 解答

スコア
80

バッジ数
1

コントリビューション
0 投稿

コントリビューション
1 パブリック チャネル

平均評価
30

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 1
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

解決済み


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

10ヶ月 前

質問


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

4年以上 前 | 3 件の回答 | 1

3

回答

チャネル


BrewHund

5年以上 前

回答済み
"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.

約6年 前 | 0

解決済み


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

約7年 前

解決済み


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

7年以上 前

解決済み


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

7年以上 前

解決済み


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

7年以上 前

解決済み


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

7年以上 前

解決済み


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

7年以上 前

回答済み
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'); ...

7年以上 前 | 0

回答済み
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...

7年以上 前 | 0

回答済み
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. ...

7年以上 前 | 0

質問


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

7年以上 前 | 1 件の回答 | 0

1

回答