Prasanna Venkateshan
Followers: 0 Following: 0
Statistics
RANK
7 339
of 295 712
REPUTATION
6
CONTRIBUTIONS
0 Questions
10 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
of 20 274
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
how to install Arduino packages
You can refer this document for installing arduino packages for MATLAB: Support for ARDUINO
mer än 4 år ago | 0
How to install Voicebox toolbox?!
You can take a look at this page for installing Voicebox tool for MATLAB: VOICEBOX for MATLAB
mer än 4 år ago | 1
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
mer än 4 år ago | 0
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
mer än 4 år ago | 0
can't install on linux
Try following the steps given in this page: Install MATLAB on linux
mer än 4 år ago | 0
How to install lipsvm ?
You can watch this video tutorial for installing libsvm in MATLAB: Install LIBSVM
mer än 4 år ago | 0
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...
mer än 4 år ago | 0
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...
mer än 4 år ago | 0
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...
mer än 4 år ago | 0
| accepted
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)
mer än 4 år ago | 0