回答済み
How to plot multiple data sets on the same graph
Use hold on and hold off to add new data to a set of existing Axes. plot(x1,y1) hold on plot(x2,y2) hold off An...

6年以上 前 | 9

| 採用済み

回答済み
How to use Gamma distribution as the kernel of Naive Bayes in MATLAB code?
If your features follow a Gamma distribution you should be fine just using the 'normal' smoothing Kernel. To provide some intuit...

約7年 前 | 0

| 採用済み

回答済み
Is this the correct syntax for replacing a specific element in a dependent vector?
It looks like you are trying to change any values of |w| which are greater than |wRes| to be |wRes| instead, but you are instead...

約7年 前 | 0

回答済み
Does fmincon automatically normalis/scale the input vector according to the bounds?
opts = optimoptions('fmincon','Algorithm','interior-point','ScaleProblem','none');

7年以上 前 | 2

| 採用済み

回答済み
How to add text in a bar in a multiple bar plot?
This requires us to find information about the location of each of the individual bars and calculate the centers for the labels....

7年以上 前 | 2

回答済み
PCA which Features are kept?
PCA is just a transformation of your feature space via centering and rotation such that your components (the resulting basis vec...

7年以上 前 | 2

| 採用済み

回答済み
ALPHA must be a scalar between 0 and 1, exclusive.
Older versions of MATLAB did have a slightly different syntax for the multcompare function which was: multcompare(stats,alp...

7年以上 前 | 0

回答済み
Given two vectors A,B - how can I create a vector v where v(n) = A(n):B(n)
The function you are looking for is called |arrayfun|. This takes a function handle and n arrays and calls the function n-times,...

7年以上 前 | 1

| 採用済み

回答済み
ARIMA BIC LOOP including "zero"
If you changed the loop to start at 0, you are trying to index LOGL and PQ at the index 0 which does not exist. MATLAB starts in...

7年以上 前 | 0

| 採用済み

回答済み
Laplacian clustering on Network
Assuming that you are interested in performing a spectral clustering a good place to start would be <https://en.wikipedia.org/wi...

7年以上 前 | 0

回答済み
How to pass structure data into parfor loop
You can simply extract the data that you want to pass to the workers: inpt.a1 = rand(100); inpt.a2 = rand(100); A...

7年以上 前 | 1

| 採用済み

回答済み
How to gather results from a parfor loop?
The issue here is that otpt is assigned separately on each of the workers, this makes its <https://www.mathworks.com/help/distco...

7年以上 前 | 1

| 採用済み

回答済み
Unable to execute GA optimisation algorithm due to Objective Function
MATLAB cannot find the file where you define your objective function evaluation. If you type: which ResourceAllocation M...

7年以上 前 | 0

回答済み
Is there any way to display a value instead of circles for points on a plot?
You can use the |text| function. x = rand(5,1); y = rand(5,1); txt = num2str((1:5)'); text(x,y,txt)

7年以上 前 | 1

回答済み
Bug in least squares fitting
The issue is that you are trying to do an element-wise division but are not using an element-wise operator. You can see that: ...

7年以上 前 | 0

| 採用済み

回答済み
use the variable editor in a GUI
The |open| command will open a variable in the Variable Editor: x = rand(1,10); open x

7年以上 前 | 0

回答済み
How is it possible that gamultiobj gives worse solution when the number of MaximumGenerations is raised?
Ok. So there is an additional change you make in here that was not mentioned and is affecting the output. You change the MaxStal...

7年以上 前 | 0

| 採用済み

回答済み
Neural Network: how can I get the correct output answer without using the function "sim", neural network function "sim" vs my calculation with trained network's weight and bias
There is a scaling of the data which happens for the inputs and outputs which is not being considered in the above example. All...

7年以上 前 | 4

| 採用済み

回答済み
Fit distribution to probability plot
It looks like you are looking at comparing the Cumulative Distribution Function (CDF) with the Empirical Cumulative Distribution...

7年以上 前 | 1

| 採用済み

回答済み
Calculate the number of days between two datetimes?
You can do: days(day2-day1) The issue is that the |between| function returns a |calendarDuration| and this is measured u...

7年以上 前 | 1

| 採用済み

回答済み
I'm trying to run a linear regression on cases that fit certain criteria, can you help?
The if statement must have a scalar logical statement next to it (either true or false) but what you have is a numeric matrix. ...

7年以上 前 | 1

| 採用済み

回答済み
Increasing contour levels non-linearly
You can control the levels which are displayed by using the syntax: contour(Z,levels) where Z is the data and levels def...

7年以上 前 | 0

| 採用済み

回答済み
How can I display a complex decimal result with actual precision value?
format long will display the full numeric precision of all values at the command line.

7年以上 前 | 0

回答済み
Alternative to rsquared in robust regression using fitlm('RobustOpts','on')
Robust regression is simply going to fit your regression model using OLS and then perform an additional weighted regression to p...

7年以上 前 | 0

回答済み
What Does 20/400 Mean?
From the doc: "Location of bottom left corner of video window, specified as the comma-separated pair consisting of 'Location' an...

7年以上 前 | 1

| 採用済み

回答済み
Optimization options in financial toolbox.
The Portfolio datatypes in the Financial Toolbox cannot use Global Optimization solvers. On the other hand you can use a Global ...

7年以上 前 | 0

| 採用済み

回答済み
Why I am getting error for performing AIC test for model orders varying in 0:3 range?
MATLAB indexing starts at 1, so when wither p or q is equal to 0 your indexing, LOGL(p,q) = logL; PQ(p,q) = p+q; will...

7年以上 前 | 1

| 採用済み

回答済み
One step ahead forecast from an estimated model - error term
1. The arima\estimate method will return to you the data on the original scale. That is if you do: Mdl = arima(1,1,1); M...

7年以上 前 | 1

| 採用済み

回答済み
i have defined the 3 columns as xt yt and zt. how do i run the following regression zt = β0 + β1xt + β1yt + E(epsilon)t
Assuming E(epsilon)t is not time dependent and is iid Normal with mean 0. X = [xt,yt]; Mdl = fitlm(zt,X);

7年以上 前 | 0

回答済み
Case insensitive enumeration class
Why would you want to have your enumeration be able to have any case? The only place I could consider this, is if the user ha...

7年以上 前 | 2

| 採用済み

さらに読み込む