photo

Shashank Prasanna

MathWorks

Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Product Marketing, MathWorks
Statistics and Machine Learning Applications

Statistica

All
MATLAB Answers

0 Domande
677 Risposte

File Exchange

3 File

Cody

0 Problemi
4 Soluzioni

RANK
85
of 301.537

REPUTAZIONE
1.746

CONTRIBUTI
0 Domande
677 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
323

RANK
804 of 21.318

REPUTAZIONE
2.336

VALUTAZIONE MEDIA
4.80

CONTRIBUTI
3 File

DOWNLOAD
23

ALL TIME DOWNLOAD
21713

RANK
64.789
of 175.234

CONTRIBUTI
0 Problemi
4 Soluzioni

PUNTEGGIO
50

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • Guiding Light
  • 12 Month Streak
  • Revival Level 1
  • Knowledgeable Level 5
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
how can make video from images.......
What you are looking for is here: http://www.mathworks.com/help/matlab/examples/convert-between-image-sequences-and-video.htm...

circa 11 anni fa | 4

Risposto
one-class classifier using "Gaussian Mixture Model"
Here is the documentation link to Gaussian Mixture Models: http://www.mathworks.com/help/stats/gaussian-mixture-models-1.html...

oltre 11 anni fa | 1

| accettato

Risposto
how to make the X,Y for fitcsvm,as i get error using it?
What version of MATLAB are you using? fitcsvm was introduced in MATLAB R2014a. If you are using an earlier version of MATLAB you...

oltre 11 anni fa | 0

Risposto
How does predict with ensemble regression works?
For classification the output of the ensemble is the class that gets majority vote from all the learners. For regression the res...

oltre 11 anni fa | 1

| accettato

Risposto
Parameter manipulation in naive bayes classificator struct
You can change the prior before the model is fit. If you want to specify different prior, you can do that while calling NaiveBay...

oltre 11 anni fa | 0

| accettato

Risposto
Matlab animation to powerpoint
You can export your animation as a video as follows: http://www.mathworks.com/help/matlab/ref/videowriter-class.html You c...

oltre 11 anni fa | 1

Risposto
How can I import data from .xls using for Principal Component Analysis (PCA)?
Michelle, your approach is correct. *princomp* (or *pca* which is a newer and recommended function to use) accepts only matrices...

oltre 11 anni fa | 1

| accettato

Risposto
predict does not work with a crossvalidated tree?
When you use the 'crossval' 'on' flag you get a partitioned model as an output. You can predict from this model using kfol...

oltre 11 anni fa | 0

| accettato

Risposto
Chaotic signal generation using Matlab
There are plenty of submissions for Lorentz attractor in File Exchange: http://www.mathworks.com/matlabcentral/fileexchange/i...

oltre 11 anni fa | 0

Risposto
nonlinear minimization with fminunc
The optimization stopped because *size of the current step is less than the default value*. However you can change the defaults....

quasi 12 anni fa | 0

Risposto
Eigen face , principal component analysis
Did you try File Exchange? http://www.mathworks.com/matlabcentral/fileexchange/index?utf8=%E2%9C%93&term=eigenface There a...

quasi 12 anni fa | 0

| accettato

Risposto
Optimset error: How to get over it?
It appears that the code you found was written using an older version of MATLAB (R2011a or earlier). LineSearchType has since be...

quasi 12 anni fa | 0

Risposto
Multiple linear model p value f test t test
These phrases have standard meaning in Statistics which is consistent with most literature you may find on Linear Regression. In...

quasi 12 anni fa | 0

| accettato

Risposto
Can neural net weights be negative?
Weights can be whatever the training algorithm determines the weights to be. If you take the simple case of a perceptron (1 laye...

quasi 12 anni fa | 1

| accettato

Risposto
Nearest nodes to a given point
You can perform a "m" nearest neighbor search for a specified distance metric: http://www.mathworks.com/help/stats/knnsearch....

quasi 12 anni fa | 0

| accettato

Risposto
What are the new features in embedded coder?
If you have specific questions on capabilities you should consider contacting MathWorks embedded coder expert on the product pag...

quasi 12 anni fa | 0

Risposto
My parallel computing code (R2013b) is very slow
If you have Parallel Computing Toolbox installed you shouldn't see the error message. Confirm you have Parallel Computing Toolb...

quasi 12 anni fa | 1

| accettato

Risposto
Write in the different csv cells in matlab
Why don't you use CSVWRITE: http://www.mathworks.com/help/matlab/ref/csvwrite.html

quasi 12 anni fa | 0

Risposto
How can I create a vector of rolling Standard Deviations
It is preferred if you give it a shot first and then seek help, w = 30; y = NaN(100,1) x = randn(100,1); for ii = ...

quasi 12 anni fa | 1

| accettato

Risposto
How to find standard deviation of a linear regression?
Ronny, it is fairly easy to calculate in few lines of code, however it is easier to use functions such as fitlm to perform linea...

quasi 12 anni fa | 1

Risposto
How to execute .exe file at linaro ubuntu(ARM processor)
Firstly .exe executable files are specific to Windows OS, they won't run on Linux unless you use an emulator such as wine. Cu...

quasi 12 anni fa | 0

Risposto
Matlab AR command for creating the model of predicting kstep ahead prediction
Maybe you are looking for ARX (autoregressive with exogenous inputs). You can fit an ARX model using either the Econometrics or ...

quasi 12 anni fa | 0

| accettato

Risposto
MATLAB code for PCA and K-Means to be applied on Intrinsic Mode Function graphs?
http://www.mathworks.com/help/stats/pca.html http://www.mathworks.com/help/stats/kmeans.html

quasi 12 anni fa | 0

Risposto
How to calculate AIC in glmfit?
It is recommended to use *fitglm* instead of the older glmfit. Depending on the release of MATLAB (> R2012a) you can use either...

quasi 12 anni fa | 3

| accettato

Risposto
extract equation from cfit contents
You can use the formula methods to access the formula you fit: load census f = fittype('poly2'); formula(f)

quasi 12 anni fa | 0

| accettato

Risposto
Using fitlm for multiple linear model: Does this function automatically standardise the variables?
No fitlm doesn't not standardize your data. You will have to do this prior to calling fitlm: http://www.mathworks.com/help/st...

quasi 12 anni fa | 0

| accettato

Risposto
How can predict multi step ahead using Narnet
Take a look at the line where I define *Ypred* here I specify nans for the number of forecasts I want to make. I specify 4 more ...

quasi 12 anni fa | 3

| accettato

Risposto
difference between bernoulli and binomial random variables
The Bernoulli distribution is a special case of the binomial distribution, with the number of trials n = 1. https://en.wikip...

quasi 12 anni fa | 0

Risposto
How to use KNN to classify data in MATLAB?
You need a validation set if you want to tune certain parameters in the classifier. For example if you were to use SVM with rbf ...

quasi 12 anni fa | 2

Risposto
Why does quadprog return different results on different machines?
Did you provide the starting point yourself? If you have multiple optimums then the result will be sensitive to the starting poi...

quasi 12 anni fa | 0

Carica altro