Community Profile

photo

Prasanna Venkateshan


Last seen: 4 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计数据

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

查看徽章

Feeds

排序方式:

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

4 years 前 | 0

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

4 years 前 | 0

已回答
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

4 years 前 | 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

4 years 前 | 0

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

4 years 前 | 0

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

4 years 前 | 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...

4 years 前 | 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...

4 years 前 | 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...

4 years 前 | 0

| 已接受

已回答
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)

4 years 前 | 0