Community Profile

photo

Naman

MathWorks

Active since 2023

I am a software engineer intern at Mathworks. I am currently working on a Driving Scenario project.

Programming Languages:
Python
Spoken Languages:
English
Pronouns:
He/him

Statistics

  • First Answer
  • Solver

View badges

Content Feed

View by

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displayed ...

10 maanden ago

Solved


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

10 maanden ago

Solved


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

10 maanden ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

10 maanden ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

10 maanden ago

Solved


String Logic 8
Example: 'CAT' --> 65 'DOG' --> 68 'ROSY' --> 79 'MATLAB' --> 65 'TRUST' --> 82 'MOSTLY' --> 76

11 maanden ago

Solved


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

11 maanden ago