Community Profile

photo

Noah Safra


Last seen: 22 Tage vor Aktiv seit 2021

Followers: 0   Following: 0

Kontakt

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

Statistiken

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor

Gelöst


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

mehr als 2 Jahre vor