photo

Hanan Kavitz


Applied Materials

Last seen: environ 5 ans il y a Actif depuis 2011

Followers: 0   Following: 0

Message

Professional Interests: machine learning, optimization

Statistiques

All
MATLAB Answers

1 Question
0 Réponses

File Exchange

10 Fichiers

Cody

0 Problèmes
35 Solutions

RANG
202 115
of 300 771

RÉPUTATION
0

CONTRIBUTIONS
1 Question
0 Réponses

ACCEPTATION DE VOS RÉPONSES
0.0%

VOTES REÇUS
0

RANG
1 602 of 21 084

RÉPUTATION
1 176

CLASSEMENT MOYEN
4.60

CONTRIBUTIONS
10 Fichiers

TÉLÉCHARGEMENTS
13

ALL TIME TÉLÉCHARGEMENTS
10862

RANG
15 613
of 170 969

CONTRIBUTIONS
0 Problèmes
35 Solutions

SCORE
360

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

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

Afficher les badges

Feeds

Afficher par

A résolu


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

environ 10 ans il y a

A résolu


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

environ 10 ans il y a

Question


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

environ 10 ans il y a | 2 réponses | 0

2

réponses

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A soumis


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.

presque 13 ans il y a | 1 téléchargement |

0.0 / 5

A soumis


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

presque 13 ans il y a | 1 téléchargement |

5.0 / 5
Thumbnail

A soumis


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

environ 13 ans il y a | 2 téléchargements |

5.0 / 5
Thumbnail

A résolu


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.

environ 13 ans il y a

A résolu


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

environ 13 ans il y a

A résolu


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

environ 13 ans il y a

A résolu


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

environ 13 ans il y a

A soumis


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

environ 13 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


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

environ 13 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

A résolu


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

plus de 13 ans il y a

Charger plus