Community Profile

photo

Vinayak

MathWorks

Last seen: 9 months ago Active since 2023

Followers: 0   Following: 0

I am a summer EDG intern at Mathworks. My work is related to Code Generation and Embedded Coder. Also I am learning symbolic dimensions. I love to do programming in C++ and looking forward to learn many skills here at Mathworks. Disclamer: All answers which I am giving are my opinions and are not representatives of Mathworks.

Programming Languages:
Python, C++, C
Spoken Languages:
English
Pronouns:
He/him

Statistics

  • Solver
  • First Answer

View badges

Feeds

View by

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 months ago

Solved


What is the next step in Conway's Life?
Given a matrix A that represents the state of Conway's game of Life at one instant (time t=n), return the matrix B that represen...

10 months ago

Solved


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

10 months ago

Solved


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end),...

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

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

10 months ago

Solved


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

10 months ago

Solved


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

10 months ago