photo

KARUPPASAMYPANDIYAN M


Kalasalingam Academy of Research and Education

Last seen: Today Active since 2021

Followers: 2   Following: 0

Message

M. Karuppasamypandiyan is working as an Associate Professor in the Department of Electrical Engineering at Kalasalingam University, TN, India. He completed his BE in Electrical and Electronics Engineering from K.L.N College of Engineering in 2011 and obtained his MTech in Power System Engineering from Kalasalingam University in 2014. He has 10 SCI and 20 Scopus indexed publications. He has completed 4 funded projects and he has one ongoing project form government funding agencies. He has received professional achievement award from IEEE, Madras section in the year 2017. He acted as executive committee member of IEEE MAS Young Professional Society in the year of 2017 and 2018. He is MATHWORKS Certified MATLAB Associate Developer. His area of research is application of AI techniques.

Programming Languages:
C
Spoken Languages:
English

Statistics

All
File Exchange

3 Files

Cody

0 Problems
260 Solutions

RANK
N/A
of 300,571

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
9,360 of 21,027

REPUTATION
77

AVERAGE RATING
4.90

CONTRIBUTIONS
3 Files

DOWNLOADS
21

ALL TIME DOWNLOADS
368

RANK
542
of 169,635

CONTRIBUTIONS
0 Problems
260 Solutions

SCORE
3,523

NUMBER OF BADGES
16

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Cody 10th Anniversary 10-Day Streak
  • Introduction to MATLAB Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 3
  • First Submission
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack 2022 3rd place
  • Commenter
  • Promoter
  • Community Group Solver

View badges

Feeds

View by

Solved


Find the sides of an isosceles triangle when given its area and height from its base to apex
Find the sides of an isosceles triangle when given its area and the height from its base to apex. For example, with A=12 and h=...

4 days ago

Solved


Area of a disk
Find the area of a disk or circle. x= radius of the disk.

4 days ago

Solved


Find the Nth Root of a Given Number
Find the Nth root of a given number x. Examples x = 4096 n = 4 y = 8 x = 625 n = 5 y = 3.6239

4 days ago

Solved


Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...

4 days ago

Solved


Sum of first n positive integers
Given n, find the sum of first n positive integers Example: If n=10, then x=1,2,3,4,5,6,7,8,9,10. The sum of these terms is 55

4 days ago

Solved


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

4 days ago

Solved


Area of rhombus
Calculate the rhombus area

4 days ago

Solved


Compute a dot product of two vectors x and y
x and y are input vectors, d is a number and contains their dot product

4 days ago

Solved


Create a square matrix of multiples
Given an input, N, output a matrix N x N with each row containing multiples of the first element of each row. This also applies...

4 days ago

Solved


Is this matrix orthogonal?
Given a square matrix, a, determine whether it is orthogonal. INPUT: a, a n x n matrix OUTPUT: true or false

5 days ago

Solved


factorial of a number x
Factorial of a number x

5 days ago

Solved


Matlab Basics II - Minimum
Write a function that returns the minimum of each ROW of a matrix x example: x = [1 2 3; 4 5 6]; output [1;4];

5 days ago

Solved


Multiply a column by a row
* Given a column vector C and and a row vector R. * Output a matrix M. * Every column of M equals to C multiplied by correspon...

5 days ago

Solved


Basic electricity in a dry situation
&#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#9889 &#...

5 days ago

Solved


Arrange vector in ascending order
Arrange a given vector in ascending order. input = [4 5 1 2 9]; output = [1 2 4 5 9];

5 days ago

Solved


Simple equation: Annual salary
Given an hourly wage, compute an annual salary

5 days ago

Solved


Weighted average
Given two lists of numbers, determine the weighted average as follows Example [1 2 3] and [10 15 20] should result in 33.3...

5 days ago

Solved


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

5 days ago

Solved


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

5 days ago

Solved


find the maximum element of the matrix
for e.g x = [1 2; 3 4] y = 4

5 days ago

Solved


Switch matrix to a column vector
for e.g. x = [1 2 3 4] y = 1 3 2 4

5 days ago

Solved


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

5 days 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 right-...

5 days ago

Solved


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

5 days ago

Solved


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

5 days ago

Solved


Area of a triangle
A triangle is given with base *'b'* ,vertical hight *'h'* . then find it's area.

5 days ago

Solved


Area of a Square
Inside a square is a circle with radius r. What is the area of the square?

5 days ago

Solved


Square root of a number
Write a code that will output the square root of x.

5 days ago

Solved


Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416

5 days ago

Solved


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

5 days ago

Load more