photo

VIGNESH B S


Active since 2021

Followers: 0   Following: 0

Message

Enthusiastic MATLAB coder!!

Programming Languages:
Python, C++, C
Spoken Languages:
English

Statistics

All
MATLAB Answers

0 Questions
12 Answers

Cody

0 Problems
36 Solutions

RANK
4,842
of 300,392

REPUTATION
10

CONTRIBUTIONS
0 Questions
12 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
12,403
of 168,373

CONTRIBUTIONS
0 Problems
36 Solutions

SCORE
463

NUMBER OF BADGES
3

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Promoter
  • Knowledgeable Level 1
  • Community Group Solver
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
how to do convolution without commands
% The code below is for convolution without conv command. % Idea behind it is multiplying a element of x with every element in ...

3 years ago | 0

Answered
How to Concatenate 5 differently named variables in one variable using foor loop?
a1 = 5; a2 = 10; a3 = 15; combined_row_wise = [a1,a2,a3] combined_column_wise = [a1;a2;a3]

4 years ago | 0

Answered
How to find the roots of a trigonometric equation?
syms e x t_c eqn = e.*cos(x) + t_c.*cos(x) == 0; solve(eqn,x) here gamma*L = x t_c - theta c solve(equation , varaiable...

4 years ago | 0

Answered
Find Coefficient of a Trigonometric Function
syms x f = 5.*x.^2 + 7.*x + 3 coeffs(f) Use coeffs function. Returns x^0 , x^1 .. ,x^n coeffs. Also works with sin(x) , cos...

4 years ago | 0

Answered
how can i sum X's or R's values that their nl=1?
Matlab actually takes every column as variables. In the below shown example sum gives the result as follows ,Output is 2 4 6 ...

4 years ago | 0

| accepted

Answered
please help me to solve this problem.plot a message signal with 5Hz and the amplitude is 10. Then plot the carrier signal with 50Hz and the amplitude is 10. Finally, plot th
clc clear t = 0:0.01:10; subplot(3,1,1); m = sin(pi*t); %Message signal plot(t,m,'Linewidth',2,'Color','b'); subplo...

4 years ago | 0

Answered
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
function indices = saddle(Z) indices1 = []; %Creating a temporary matrix.. [r c] = size(Z); for i = 1:r row_sum = sum(...

4 years ago | 0

Answered
next prime number using While loops
function answer = next_prime(n) %the function recieves a scalar 'n' flag = 1; % a variable flag will act as break statement ...

4 years ago | 0