photo

KARUPPASAMYPANDIYAN M


Last seen: 2일 전 2021년부터 활동

Followers: 2   Following: 0

메시지

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

통계

All
File Exchange

3 파일

Cody

0 문제
460 답안

순위
N/A
of 300,753

평판
N/A

참여
0 질문
0 답변

답변 채택
0.00%

획득한 표
0

순위
9,327 of 21,075

평판
78

평균 평점
4.90

참여
3 파일

다운로드 수
16

ALL TIME 다운로드 수
376

순위
255
of 170,858

참여
0 문제
460 답안

점수
6,022

배지 수
22

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Cody Contest 2025 Finishers
  • CUP Challenge Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 3
  • First Submission
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack 2022 3rd place
  • Cody 10th Anniversary 10-Day Streak
  • Introduction to MATLAB Master
  • Commenter

배지 보기

Feeds

보기 기준

문제를 풀었습니다


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

17일 전

문제를 풀었습니다


Speed of car
Calculate the Speed of car given its Distance travelled and time taken in x and y respectively

17일 전

문제를 풀었습니다


Create a two dimensional zero matrix
You have to create a zero matrix of size (mxn) whose inputs are m and n and the elements of your matrix should be zeros. Exam...

17일 전

문제를 풀었습니다


find out eigenvector of matrix
find out eigenvector of matrix A =eye(3); Answer is [0 0 1; 0 1 0; 1 0 0];

17일 전

문제를 풀었습니다


Vector Multiplication
Vector Multiplication of three matrix as shown in test cases.

17일 전

문제를 풀었습니다


Element by element multiplication of two vectors
Given two input vectors, return the element-by-element product. Example A = [1 2 3] B = [7 3 1] The answer should be...

17일 전

문제를 풀었습니다


Matlab Basics II - Intervals
Write a function that takes an interval from a to b, and divides it into 5 parts example: a = 1, b = 2 output = 1 1.25 ...

17일 전

문제를 풀었습니다


Max of a Vector
Write a function to return the max of a vector

17일 전

문제를 풀었습니다


Replace every 3rd element in a vector with 4
x is a vector of undetermined length You are to replace every 3rd element with the number 4, example: x = [11 23 34 43 2 3...

17일 전

문제를 풀었습니다


Matlab Basics II - Create a vector with a repeated entry
Create a row vector of length n, filled with 4's, for example, if n = 3 output = [4 4 4] make sure to round UP when n is a...

17일 전

문제를 풀었습니다


Rotate a matrix for 180 degree
Rotate a matrix for 180 degree for eg: x=[1 2 3 4] y=[4 3 2 1]

17일 전

문제를 풀었습니다


Convert Fahrenheit to Celsius
Calculate the Celsius temperature C given the Fahrenheit temperature F. Examples: Input F = 90 Output C is 32.22 I...

17일 전

문제를 풀었습니다


Find the hypotenuse
Given a and b (the two sides of a right-triangle), find c, the hypotenuse.

17일 전

문제를 풀었습니다


Determine the square root
Determine the square root of the value the user has entered, n.

17일 전

문제를 풀었습니다


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

17일 전

문제를 풀었습니다


Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...

17일 전

문제를 풀었습니다


Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]

17일 전

문제를 풀었습니다


Exponents
Set a varible y = to x^2

17일 전

문제를 풀었습니다


Insert zeros into vector
Insert zeros after each elements in the vector. Number of zeros is specified as the input parameter. For example: x = [1 ...

17일 전

문제를 풀었습니다


Unique values without using UNIQUE function
You must return unique values in a vector in *stable* mode without using the unique function. About stable order flag: ...

17일 전

문제를 풀었습니다


Breaking Out of the Matrix
Do you want to take the Red Pill, or the Blue Pill? If you take the Blue Pill, you will simply pass along to the next problem...

17일 전

문제를 풀었습니다


Sorting integers by their digits (Level 1)
Given a vector, v, of positive integers, return a vector, w, by sorting v in ascending order, such that primary sorting is done ...

17일 전

문제를 풀었습니다


Find the sum of the elements in the "second" diagonal
Find the sum of the elements in the diagonal that starts at the top-right corner and ends at the bottom-left corner.

17일 전

문제를 풀었습니다


Column Removal (★★★)
(copy of prob 7) Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2...

17일 전

문제를 풀었습니다


Remove entire row and column in the matrix containing the input values
Remove the entire row and column from the matrix containing specific values. The specified value can be a scalar or a vector. Fo...

17일 전

문제를 풀었습니다


remove every row&col for every nan
for a given matrix, remove the row and column of every nan. Example x=[1 2 NaN 4 5 6 7 8 ...

17일 전

문제를 풀었습니다


Remove all the columns contains only zero
Remove the column from the matrix which has only zeros . Refer the Example below a= 1 0 3 0 23 0 56 0 1 ...

17일 전

문제를 풀었습니다


row removal
Consider a matrix and remove the first row of the matrix.

17일 전

문제를 풀었습니다


Find Rows with Specift Properities
Delete rows with specific properites as following: Find rows that have a negative value in any element of the row and delete it...

17일 전

문제를 풀었습니다


Remove a specific column with min value
Remove the column that contain the min value in the matrix? If you like the problem, please give it a like:)

17일 전

더 보기