回答済み
How to generate matrix using MATLAB ?
There isn't a right answer. Here is one: X = eye(4); X(:,repmat(1:4,4,1)) Change 4 to something else if you want to ...

12年弱 前 | 0

| 採用済み

回答済み
svmclassify is extremely slow
Hi Jakob, Do you have access to MATLAB prerelease? http://www.mathworks.com/matlabcentral/answers/101155 If you do, fee...

約12年 前 | 0

回答済み
fmincon multiple optimal solution
If you use the same starting point you must get the same results. If you use the Trust-Region-Reflective algorithm for the solv...

約12年 前 | 1

回答済み
Support Vector Machine could not fix this problem
The iris dataset is 3 classes. The SVMTRAIN function in the Statistics Toolbox can only solve binary classification problems. Ho...

約12年 前 | 0

回答済み
How can I calculate Sum of Squared Errors of two matrices of a different number of rows
Synchronize your data to a common time scale and then compute your error measure. http://www.mathworks.com/help/matlab/ref/ti...

約12年 前 | 0

| 採用済み

回答済み
Neural network result errors seem to be random (not reproducible)
Weights are initialized randomly. If you want to reproduce the results, one way is to reset the random seed each time you run t...

約12年 前 | 5

| 採用済み

回答済み
How does predict work for classification tree algorithm?
Type: >> view(obj) you can visualize the tree. predict generates predictions by following the branches of tree until ...

約12年 前 | 0

| 採用済み

回答済み
How can I fit data into Gaussian model?
That's a very small dataset. Do you know how many clusters are there? Did you try: n = numbers_of_clusters obj = gmdist...

約12年 前 | 0

回答済み
Presample states for ARMA model, Question for function arima and simulate
*Case 1:* If the lag order polynomial has mag of all roots < 1, it is stable. e.g: y(t) = 0.9*y(t-1) + e The AR model ...

約12年 前 | 0

回答済み
Monte Carlo code for scenario generation
You need to be able to draw random samples from a specified distribution. Notice that there are several things unspecified in...

12年以上 前 | 0

回答済み
Question on covariance matrix loop
If you want to stack 2000 cov matrices then you may want to use 3D matrices, VarCov(:,:,i) = cov(AB(j:k,:)); Here for eac...

12年以上 前 | 0

回答済み
How can i use aic to regression model and time series models matlab R2006a ?
AICBIC function is available in the Econometrics Toolbox: http://www.mathworks.com/help/econ/aicbic.html If you don't have...

12年以上 前 | 0

| 採用済み

回答済み
generating numbers with fixed difference
You can use simple indexing or linspace: http://www.mathworks.com/help/matlab/ref/linspace.html

12年以上 前 | 0

| 採用済み

回答済み
Can I increase the number of worker threads the parallel toolbox uses?
Intel CPUs with hyper-threading give the appearance that a computer has twice as many cores than it actually has. The additiona...

12年以上 前 | 0

| 採用済み

回答済み
where is fitglm function in statistic Toolbox of 2013a
|fitglm| was introduced in R2013b release. Here is the release notes: http://www.mathworks.com/help/stats/release-notes.html?...

12年以上 前 | 1

| 採用済み

回答済み
How can I use the Support Vector Machine (SVM) for making classification of trajectories of many objects
The link you provided has two full examples of classification using SVM. Did you try running those? Do you have specific questio...

12年以上 前 | 0

回答済み
Finding the zeros of a function
Did you try this? http://www.mathworks.com/help/matlab/ref/fminbnd.html

12年以上 前 | 1

回答済み
Symbollically solving Ax=b
It does. >> syms a b c d x1 x2 b1 b2 >> x = solve([a,b;c,d]*[x1;x2]==[b1;b2]) >> x.x1 >> x.x2 You can start he...

12年以上 前 | 0

回答済み
How to interpret this result from lbqtest?
Those p-values are quite large compared to default significance of 0.05 If the p-value was less than 0.05, h will be 1 and it i...

12年以上 前 | 1

回答済み
Is Matlab/Simulink version R2010a compatible with Windows 8?
Windows 8: Support for Windows 8 begins in R2012a for x86-based computers. http://www.mathworks.com/support/sysreq/roadmap.h...

12年以上 前 | 0

回答済み
Will student version work on Windows 8 64bit system?
A 32-bit MATLAB will run on a 64-bit OS if that's the question. Here is the system requirements page for student release: ...

12年以上 前 | 0

回答済み
help with linear regression function
fitlm is a convenience interface function for LinearModel.fit that was introduced in MATLAB R2013b. If you are using an earlier...

12年以上 前 | 0

| 採用済み

回答済み
How do I classify heart sounds using Euclidean distance?
You haven't provided much detail about the nature of the problem, but it appears that kNN classifier might be what you are looki...

12年以上 前 | 0

回答済み
How to create Neural Network classifier for pattern Recognition ?
Here is a walk through example of how to do pattern classification using the Neural Network Toolbox: http://www.mathworks.com...

12年以上 前 | 1

回答済み
-v7.3 switch
If the file is larger than 2GB then you will have to use 7.3. You can choose the version 7.3 option in the MATLAB preferences. ...

12年以上 前 | 4

| 採用済み

回答済み
self tunable PID controller
If you know your operating points you can gain schedule different PIDs: http://www.mathworks.com/help/robust/gain-scheduled-c...

12年以上 前 | 0

回答済み
What tablets are capable of downloading and running Matlab? Thanks.
MATLAB Mobile is available for both Android tablets as well as iPads. These apps enable you to connect to either a local MATLAB ...

12年以上 前 | 1

| 採用済み

回答済み
Confusion on function handles
You need to precede your operations with a dot "." as described here: http://www.mathworks.com/help/matlab/matlab_prog/array-...

12年以上 前 | 2

回答済み
How to cluster training data before training a neural network
Could you explain further? There are a number of ways to cluster your data: Statistics Toolbox: http://www.mathworks.com/h...

12年以上 前 | 0

| 採用済み

回答済み
How can I write for fit using cftool?
Are you able to do this on CFTOOL? if you are then you can go to File > Generate Code This will automatically generate the MA...

12年以上 前 | 0

さらに読み込む