photo

Roni Peer


Covidien

Last seen: 5 månader ago Active since 2011

Followers: 0   Following: 0

Message

I am a System Engineer, working and developing new Medical Devices. Before that, I worked as an Application Engineer focusing on The MathWorks Physical Modelling and Control Design Product lines. I consulted different companies during the evaluation and development stages of their projects. I had tight cooperation with the marketing and sales team, and conducted a Technical Seminar every few months. I also used to teach Simulink and Stateflow to MathWorks customers, so if you want to learn something - just ask. Professional Interests: Control Design, Physical Modeling, Code Generation, Embedded Systems

Statistics

All
MATLAB Answers

1 Question
0 Answers

File Exchange

18 Files

Cody

0 Problems
73 Solutions

ThingSpeak

1 Public Channel

RANK
144 823
of 300 365

REPUTATION
0

CONTRIBUTIONS
1 Question
0 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
0

RANK
717 of 20 933

REPUTATION
2 581

AVERAGE RATING
4.00

CONTRIBUTIONS
18 Files

DOWNLOADS
36

ALL TIME DOWNLOADS
24701

RANK
8 972
of 168 262

CONTRIBUTIONS
0 Problems
73 Solutions

SCORE
720

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
1 Public Channel

AVERAGE RATING
50

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Scavenger Finisher
  • Commenter
  • Promoter
  • Solver

View badges

Feeds

Submitted


A short Simulink workshop + Hebrew presentation
A short 'What is Simulink' workshop .

mer än 2 år ago | 2 downloads |

5.0 / 5
Thumbnail

Submitted


Buffer and UnBuffer using Simulink Blocks
A simple way to model Buffer and UnBuffer blocks, using just Simulink Blocks. Contains also a test.

ungefär 4 år ago | 2 downloads |

5.0 / 5
Thumbnail

Question


Change preferences in ClassificationLearner (or other apps) ?
Using the classificationLearner app, the default value of 'parallel' is 'off'. Any way to change it so it will be 'on' by defaul...

mer än 4 år ago | 1 answer | 0

1

answer

Channel


ExampleForInon
Example used for WaterSign

nästan 6 år ago

Solved


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

ungefär 8 år ago

Solved


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

ungefär 8 år ago

Solved


How to subtract?
* Imagine you need to subtract one number from another using MATLAB. * You will not be using eval for this task. * Given two A...

ungefär 8 år ago

Solved


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

ungefär 9 år ago

Solved


radius of a spherical planet
you just measured its surface area, that is the input.

ungefär 9 år ago

Solved


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


surface of a spherical planet
you just discovered its circumference, that is the input.

ungefär 9 år ago

Solved


Back to basics 6 - Column Vector
Covering some basic topics I haven't seen elsewhere on Cody. Given an input vector, output true or false whether it is a colu...

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

ungefär 9 år ago

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

ungefär 9 år ago

Solved


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

ungefär 9 år ago

Solved


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

ungefär 9 år ago

Solved


Pizza value using expression with parentheses
Pizza prices are typically listed by diameter, rather than the more relevant feature of area. Compute a pizza's value (cost per ...

ungefär 9 år ago

Solved


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


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

ungefär 9 år ago

Solved


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

ungefär 9 år ago

Solved


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

ungefär 9 år ago

Solved


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

ungefär 9 år ago

Load more