photo

Prasanna Venkateshan


Last seen: 5 years ago Active since 2020

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

0 Questions
10 Answers

Cody

0 Problems
29 Solutions

RANK
6,693
of 300,352

REPUTATION
6

CONTRIBUTIONS
0 Questions
10 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,928

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
18,090
of 168,212

CONTRIBUTIONS
0 Problems
29 Solutions

SCORE
300

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • Revival Level 3
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
how to install Arduino packages
You can refer this document for installing arduino packages for MATLAB: Support for ARDUINO

5 years ago | 0

Answered
How to install Voicebox toolbox?!
You can take a look at this page for installing Voicebox tool for MATLAB: VOICEBOX for MATLAB

5 years ago | 1

Answered
How to specify the download location of Matlab 2014a
You can take a look at this question's answer by mathworks support team: Change download location

5 years ago | 0

Answered
Installing student version matlab in i686 mint linux
You can take a look at this question's answer by mathworks support: Install MATLAB Student version

5 years ago | 0

Answered
can't install on linux
Try following the steps given in this page: Install MATLAB on linux

5 years ago | 0

Answered
How to install lipsvm ?
You can watch this video tutorial for installing libsvm in MATLAB: Install LIBSVM

5 years ago | 0

Answered
How to implement loop in simulink
You can use these methods to implement loop in simulink: Iterator and you can matlab function block to use your matlab code: MAT...

5 years ago | 0

Answered
Playing video in MATLAB
implay function only plays video and not audio. You can confirm this at implay. To play both audio and video, you can refer the...

5 years ago | 0

Answered
Two Matrix array elements addition except the very first one
matrix=[1 2 3 4;5 6 7 8;9 10 11 12]; for i=1:size(matrix,1) for j=size(matrix,2):-1:2 matrix(i,j)=matri...

5 years ago | 0

| accepted

Answered
How to compute the sum of the squares of all integers from 2 to 20 using for-loop?
The variable sum contains your output sum=0; for i=2:20 sum=sum+i^2; end disp(sum)

5 years ago | 0