photo

Hanan Kavitz


Applied Materials

Last seen: 5年以上 前 2011 年からアクティブ

Followers: 0   Following: 0

Professional Interests: machine learning, optimization

統計

All
MATLAB Answers

1 質問
0 回答

File Exchange

10 ファイル

Cody

0 問題
35 解答

ランク
109,455
of 300,857

評判
0

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

回答採用率
0.0%

獲得投票数
0

ランク
1,605 of 21,097

評判
1,176

平均評価
4.60

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

ダウンロード
14

ALL TIME ダウンロード
10864

ランク
15,628
of 171,361

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

スコア
360

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Personal Best Downloads Level 2
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 3
  • First Submission
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

10年以上 前

解決済み


Generate the sum of Squares of the given number
|P(n) = 1^2 + 2^2 + ... + n^2| |P(1) = 1| |P(2) = 1 + 4 = 5;| |P(3) = 5 + 9 = 14;| |P(4) = 14 + 16 = 30;|

10年以上 前

質問


How does a MATLAB generated binary knows its fullpath?
I have a MATLAB compiler generated binary (exe/jar/dll). I would like to be able to get the full path of the binary itself at...

10年以上 前 | 2 件の回答 | 0

2

回答

解決済み


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

10年以上 前

解決済み


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年以上 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

10年以上 前

解決済み


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

10年以上 前

解決済み


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

10年以上 前

解決済み


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

10年以上 前

解決済み


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

10年以上 前

解決済み


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

10年以上 前

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

10年以上 前

送信済み


Price call and put options using Constant Elasticy of Variance model
An alternative to using Black and Scholes model is using Constant Elasticity of Variance model.

13年弱 前 | ダウンロード 1 件 |

0.0 / 5

送信済み


Black and Shcoles calculator
Graphical Black and Shcoles calculator for visualizing different sensetives

13年弱 前 | ダウンロード 1 件 |

5.0 / 5
Thumbnail

送信済み


Genetic Packman
A simple demonstration of Genetic Algorithm using all times favorite game.

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

5.0 / 5
Thumbnail

解決済み


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.

約13年 前

解決済み


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

約13年 前

解決済み


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

約13年 前

解決済み


Change the sign of even index entries of the reversed vector
change the signs of the even index entries of the reversed vector example 1 vec = [4 -1 -2 9] ans = [9 2 -1 -4] example2...

約13年 前

送信済み


Credit Scoring demo
This is a demo that uses boosting to do credit scoring of German customers.

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

0.0 / 5
Thumbnail

送信済み


Image reconstruction
The purpose of this demo is to reconstruct a simple picture of several polygons.

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

0.0 / 5
Thumbnail

解決済み


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

13年以上 前

解決済み


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

14年弱 前

解決済み


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

14年弱 前

解決済み


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

14年弱 前

解決済み


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

14年弱 前

解決済み


Love triangles
Given a vector of lengths [a b c], determines whether a triangle with non-zero area (in two-dimensional Euclidean space, smarty!...

14年弱 前

解決済み


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

14年弱 前

解決済み


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

14年弱 前

解決済み


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

14年弱 前

さらに読み込む