photo

Vishwanath Salokye


Last seen: 2 years ago Active since 2012

Followers: 0   Following: 0

Message

7+ years of experience in automotive filed. Hands on experience in model based development as well as testing. My experience include RPC development for automotive control algorithm. REG testing as well as vehicle testing Professional Interests: Development and testing of application control algorithms.

Statistics

All
MATLAB Answers

2 Questions
3 Answers

File Exchange

1 File

Cody

0 Problems
9 Solutions

RANK
21,569
of 301,172

REPUTATION
2

CONTRIBUTIONS
2 Questions
3 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
1

RANK
12,782 of 21,183

REPUTATION
28

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
286

RANK
38,095
of 173,200

CONTRIBUTIONS
0 Problems
9 Solutions

SCORE
120

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • First Submission
  • Commenter
  • Promoter
  • Solver
  • Revival Level 1
  • First Answer

View badges

Feeds

View by

Solved


All capital?
Are all the letters in the input string capital letters? Examples: 'MNOP' -> 1 'MN0P' -> 0

8 years ago

Solved


First N Perfect Squares
*Description* Return the first N perfect squares *Example* input = 4; output = [ 1 4 9 16 ];

8 years ago

Solved


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

8 years ago

Solved


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

8 years ago

Solved


"Look and say" sequence
What's the next number in this sequence? * [0] * [1 0] * [1 1 1 0] * [3 1 1 0] * [1 3 2 1 1 0] This a variant on the w...

8 years ago

Solved


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

8 years ago

Solved


Alternating sum
Given vector x, calculate the alternating sum y = x(1) - x(2) + x(3) - x(4) + ...

8 years ago

Solved


Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...

8 years ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

8 years ago