photo

Noah Safra


Last seen: 3 months ago Active since 2021

Followers: 0   Following: 0

Message

Hi there well, I am long time doing programming.. I have been 8 years @ intel as a "Tools & Methodologies" eng. I also worked 5 years @ "Applied Materials" - working 100% of my time writing Matlab code to generate system/calibrations and more. .. Our guys called it "Matlab's heaven". Now I am more than 2 years in "Audio Pixels" . Doing mostly Matlab infrastucture/GUIs/Algo etc

Programming Languages:
Python, MATLAB, Visual Basic
Spoken Languages:
English

Statistics

All
MATLAB Answers

0 Questions
1 Answer

Cody

0 Problems
9 Solutions

RANK
203,056
of 300,338

REPUTATION
0

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,922

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
39,643
of 168,149

CONTRIBUTIONS
0 Problems
9 Solutions

SCORE
106

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • First Answer
  • Revival Level 1
  • Solver

View badges

Feeds

View by

Answered
Calling events registered with a COM object
Hi Caser! 1st of all- you MUST see: https://www.mathworks.com/help/matlab/matlab_external/com-event-handlers.html 1st: you...

4 years ago | 0

Solved


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

4 years ago

Solved


Count number of words in string
Count number of words in string Examples 'hi', answer is 1 'hi hi', answer is 2 'I enjoy cody', answer is 3

4 years ago

Solved


Find out total non zero element of matrix
Find out Non zero element of matrix A=magic(5) 17 24 1 8 15 23 5 7 14 16 4 6...

4 years ago

Solved


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

4 years ago

Solved


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

4 years ago

Solved


For a rectangle, if x is the length and 2x is width. Then find out x from the area of the rectangle?
For a rectangle, if x is the length and 2x is the width. Then find out x from the area of the rectangle? if the area is equal...

4 years ago

Solved


How to Concatenate two strings?
How to Concatenate two strings?

4 years ago

Solved


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

4 years ago

Solved


The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...

4 years ago