David Tarkowski - MATLAB Central
photo

David Tarkowski

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

Followers: 0   Following: 0

統計

All
CodyMATLAB AnswersFile ExchangeFrom 02/11 to 04/25Use left and right arrows to move selectionFrom 02/11Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 質問
36 回答

File Exchange

8 ファイル

Cody

0 問題
97 解答

ランク
768
of 298,005

評判
100

コントリビューション
0 質問
36 回答

回答採用率
0.00%

獲得投票数
20

ランク
307 of 20,520

評判
4,941

平均評価
4.20

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

ダウンロード
12

ALL TIME ダウンロード
48606

ランク
6,617
of 160,151

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

スコア
980

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Knowledgeable Level 3
  • Personal Best Downloads Level 2
  • Editor's Pick
  • 5-Star Galaxy Level 4
  • First Submission
  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
Given a number _n_, return the terminal value of the number chain formed by summing the square of the digits. According to the P...

6年以上 前

解決済み


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F_n = F_(n-1) + F_(n-2) * where F_0 = 0 and F_1 ...

6年以上 前

解決済み


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

6年以上 前

解決済み


Sum of first n terms of a harmonic progression
Given inputs a, d and n, return the sum of the first n terms of the harmonic progression a, a/(1+d), a/(1+2d), a/(1+3d),....

6年以上 前

解決済み


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

6年以上 前

解決済み


Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...

6年以上 前

解決済み


Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...

6年以上 前

解決済み


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

6年以上 前

解決済み


Pentagonal Numbers
Your function will receive a lower and upper bound. It should return all pentagonal numbers within that inclusive range in ascen...

約7年 前

解決済み


Pernicious Anniversary Problem
Since Cody is 5 years old, it's pernicious. A <http://rosettacode.org/wiki/Pernicious_numbers Pernicious number> is an integer w...

約7年 前

解決済み


Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
Submit your answer to this problem a multiple of 5 seconds after the hour. Your answer is irrelevant; the only thing that matte...

7年以上 前

解決済み


Energy of a photon
*&#9883 &#9762 &#9883 &#9762 &#9883 &#9762 &#9883* Given the frequency F of a photon in giga hertz. Find energy E of this...

7年以上 前

解決済み


How to subtract?
*&plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn &plusmn* * Imagine you need to subtract one...

7年以上 前

送信済み


IMAQMOTION - Image acquisition motion detection
A live image acquisition motion detection GUI.

8年以上 前 | ダウンロード 1 件 |

4.25 / 5
Thumbnail

送信済み


IMAQCALC - Image acquisition calculator
An image acquisition calculator to calculate the expected acquisition rate.

8年以上 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


IMAQPLOT - Preview video data using callbacks
Demonstration of previewing Image Acquisition Toolbox video using Handle Graphics and callbacks.

8年以上 前 | ダウンロード 1 件 |

4.0 / 5

送信済み


Motion Detection with Image Acquisition Toolbox & Simulink
Motion detection algorithm in Simulink using the Image Acquisition and Signal Processing Toolbox.

8年以上 前 | ダウンロード 2 件 |

4.0 / 5
Thumbnail

送信済み


Ghosting Demo
GUI showing alpha blending of streamed image pairs.

8年以上 前 | ダウンロード 2 件 |

0.0 / 5
Thumbnail

送信済み


Line value GUI
Analyze the intensity of an acquired image by line.

8年以上 前 | ダウンロード 2 件 |

4.66667 / 5
Thumbnail

送信済み


Custom File Format Logging
Allows users to define custom format for Image Acquisiton Toolbox file logging.

8年以上 前 | ダウンロード 2 件 |

4.0 / 5

送信済み


Timed autosave
Periodically saves the contents of the workspace to a mat file.

8年以上 前 | ダウンロード 1 件 |

0.0 / 5

回答済み
This Images are effected by which noises?
That image looks like you are returning your image in the YCbCr color space but treating it as an RGB image. See http://www.math...

約10年 前 | 0

回答済み
Trouble with videoinput and dcam device
You are using a Logitech camera which is a webcam. The |dcam| adaptor does not support webcams. If you are using the |videoinput...

約10年 前 | 1

| 採用済み

回答済み
How do you access both camera sensors of the Bumblebee2 camera?
I haven't used the BumbleBee2, but the BumbleBee camera would return the data from both sensors as a single image. If each senso...

10年以上 前 | 0

| 採用済み

解決済み


Subset Sum
Given a vector v of integers and an integer n, return the the indices of v (as a row vector in ascending order) that sum to n. I...

10年以上 前

解決済み


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

10年以上 前

解決済み


Clean the List of Names
Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So...

11年弱 前

解決済み


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

11年弱 前

解決済み


Remove the polynomials that have positive real elements of their roots.
The characteristic equation for a dynamic system is a polynomial whose roots indicate its behavior. If any of the <http://www.ma...

11年弱 前

解決済み


DNA N-Gram Distribution
Given a string s and a number n, find the most frequently occurring n-gram in the string, where the n-grams can begin at any poi...

11年弱 前

さらに読み込む