Community Profile

photo

Prasanna Venkateshan


Last seen: nästan 4 år ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • 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

nästan 4 år 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

nästan 4 år ago | 0

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

nästan 4 år 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

nästan 4 år ago | 0

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

nästan 4 år ago | 0

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

nästan 4 år 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...

nästan 4 år 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...

nästan 4 år 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...

nästan 4 år 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)

nästan 4 år ago | 0