photo

Justin Spinner


University of Missouri, Columbia

2015 年からアクティブ

Followers: 0   Following: 0

統計

All
File Exchange

7 ファイル

Cody

0 問題
73 解答

ランク
N/A
of 302,038

評判
N/A

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

回答採用率
0.00%

獲得投票数
0

ランク
7,250 of 21,510

評判
143

平均評価
5.00

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

ダウンロード
17

ALL TIME ダウンロード
1385

ランク
10,078
of 178,349

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

スコア
730

バッジ数
2

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

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

平均評価

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

平均いいねの数

  • Personal Best Downloads Level 1
  • 5-Star Galaxy Level 1
  • First Submission
  • CUP Challenge Master
  • Solver

バッジを表示

Feeds

表示方法

送信済み


multiplyLargeNumbers( intAstr,intBstr )
multiply extremely large numbers

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

0.0 / 5
Thumbnail

送信済み


subtractLargeNumbers( numberA,numberB )
Subtract Extremely Large Numbers

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

0.0 / 5
Thumbnail

送信済み


RandomPhotonWalk(Nsteps,mua)
Monte Carlo Simulation of photon propagating in 3-D space

11年弱 前 | ダウンロード 8 件 |

5.0 / 5
Thumbnail

送信済み


RGBHistogram(pathName)
Histogram of RGB images

約11年 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


DiffuseReflectance(mua,rmus,r)
Find Diffuse Reflectance of photons from within tissue layer

約11年 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

送信済み


laserHeatTissue(Tf,Fo,r)
Calculate the time required to heat tissue with incident laser power

約11年 前 | ダウンロード 1 件 |

0.0 / 5

送信済み


addLargeNumbers(intAstr,intBstr)
add two very large numbers while maintaining all digits

約11年 前 | ダウンロード 2 件 |

0.0 / 5
Thumbnail

解決済み


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the s...

約11年 前

解決済み


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

約11年 前

解決済み


Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next. Example input: x = [10 2];

約11年 前

解決済み


Project Euler: Problem 7, Nth prime
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the Nth prime nu...

約11年 前

解決済み


Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...

約11年 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

約11年 前

解決済み


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<http://upload.wikimedia.org/wikipe...

約11年 前

解決済み


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

約11年 前

解決済み


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

約11年 前

解決済み


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

約11年 前

解決済み


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<http://upload.wikimedia.org/wikipedia/commons/e/e0/Equilateral-tr...

約11年 前

解決済み


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

約11年 前

解決済み


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

約11年 前

解決済み


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

約11年 前

解決済み


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

約11年 前

解決済み


inner product of two vectors
inner product of two vectors

約11年 前

解決済み


Lightning strike distance: Writing a function
Write a function named LightningDistance that outputs "distance" given input "seconds". Seconds is the time from seeing lightnin...

約11年 前

解決済み


Fahrenheit to Celsius using multiple statements
Given a Fahrenheit value F, convert to a Celsius value C. While the equation is C = 5/9 * (F - 32), as an exercise use two state...

約11年 前

解決済み


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

約11年 前

解決済み


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

約11年 前

解決済み


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

約11年 前

解決済み


Is my wife right? Now with even more wrong husband
Again, as in "Is my wife right?" ( <http://www.mathworks.com/matlabcentral/cody/problems/149-is-my-wife-right> ), answer 'yes' r...

約11年 前

解決済み


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

約11年 前

さらに読み込む