Shrestha Kumar
自 2018 起处于活动状态
Followers: 0 Following: 0
Feeds
已回答
Missing Observations error when running regression
Hi, You can replace NaN with the mean of the data in the column(if it is a numerical value else take the mode). Also, NaN va...
Missing Observations error when running regression
Hi, You can replace NaN with the mean of the data in the column(if it is a numerical value else take the mode). Also, NaN va...
6 years 前 | 0
已回答
??? Undefined function or variable 'im' . how to solve this error?
Hi, You get this error because you have commented the definition of variable im in the first line. Uncomment it and then p...
??? Undefined function or variable 'im' . how to solve this error?
Hi, You get this error because you have commented the definition of variable im in the first line. Uncomment it and then p...
6 years 前 | 0
已回答
How to use Neural network into Large data?
Hi, If there are lots of redundant columns in your dataset then you can apply feature extraction techniques for reducing the ...
How to use Neural network into Large data?
Hi, If there are lots of redundant columns in your dataset then you can apply feature extraction techniques for reducing the ...
6 years 前 | 0
| 已接受
已回答
How can I find the maximum number and minimum number in a matrix?
Hi, max(A) returns maximum element in case A is a vector. If A is a matrix then it returns a row vector of the maximum value of...
How can I find the maximum number and minimum number in a matrix?
Hi, max(A) returns maximum element in case A is a vector. If A is a matrix then it returns a row vector of the maximum value of...
6 years 前 | 1
| 已接受
已回答
How to connect an AWS PostgreSQL database with Database Toolbox?
Hi, It seems that you haven't installed the driver for the postgresql database. You can find all the drivers for different da...
How to connect an AWS PostgreSQL database with Database Toolbox?
Hi, It seems that you haven't installed the driver for the postgresql database. You can find all the drivers for different da...
6 years 前 | 0
已回答
Image Analysis - Adding Images
Hi, You can use imread function to read the image and get a matrix with RGB values of the image. For example - imread('5.j...
Image Analysis - Adding Images
Hi, You can use imread function to read the image and get a matrix with RGB values of the image. For example - imread('5.j...
6 years 前 | 0
已回答
what does the plot obtained from fitcsvm mean?
Hi, In the plot, the number of function evaluations is the iteration number of the objective function(i.e first iteration,sec...
what does the plot obtained from fitcsvm mean?
Hi, In the plot, the number of function evaluations is the iteration number of the objective function(i.e first iteration,sec...
6 years 前 | 1
| 已接受
已回答
What is your suggestion for improving the result of such a bad ANN when the training is stopped by the maximum Mu value?
Hi, The MU reaches its maximum value means that further training will lead to degradation of the network. In your case, as...
What is your suggestion for improving the result of such a bad ANN when the training is stopped by the maximum Mu value?
Hi, The MU reaches its maximum value means that further training will lead to degradation of the network. In your case, as...
6 years 前 | 0
| 已接受
已回答
Hi, i’m new in Matlab and i can’t understand what is the problem using integral, the error occured is First input argument must ne a function handle, thanks for the help.
Hi, You cannot directly give a expression as a parameter to the integral function. So you need to define a new function wi...
Hi, i’m new in Matlab and i can’t understand what is the problem using integral, the error occured is First input argument must ne a function handle, thanks for the help.
Hi, You cannot directly give a expression as a parameter to the integral function. So you need to define a new function wi...
6 years 前 | 0
| 已接受
已回答
When using textscan how do I process repeating data?
Hi, As you are scanning the file with only one delimiter ',' the textscan look for that delimiter only to stop reading. So...
When using textscan how do I process repeating data?
Hi, As you are scanning the file with only one delimiter ',' the textscan look for that delimiter only to stop reading. So...
6 years 前 | 0
| 已接受
已回答
Plotting negative and positive values with different colors in a graph
Hi, You can find your answer here- https://in.mathworks.com/matlabcentral/answers/285397-plotting-negative-values-with-blu...
Plotting negative and positive values with different colors in a graph
Hi, You can find your answer here- https://in.mathworks.com/matlabcentral/answers/285397-plotting-negative-values-with-blu...
6 years 前 | 0
已回答
predict future value using SVM regression
Hi Haneya, Once the trained model is created you can use the predict function for predicting the values. For example - ...
predict future value using SVM regression
Hi Haneya, Once the trained model is created you can use the predict function for predicting the values. For example - ...
6 years 前 | 0
| 已接受
已回答
Plotting two digraphs on the same plot
Hi, After you plot the f graph use "hold on" to plot another graph on the same display. f=plot(F,'EdgeColor','r') hold ...
Plotting two digraphs on the same plot
Hi, After you plot the f graph use "hold on" to plot another graph on the same display. f=plot(F,'EdgeColor','r') hold ...
6 years 前 | 0
| 已接受
已回答
Display the calculation result
Hi, You are declaring a zero matrix each time inside the loop i.e for the first iteration you declare a 4*1 zero matrix and the...
Display the calculation result
Hi, You are declaring a zero matrix each time inside the loop i.e for the first iteration you declare a 4*1 zero matrix and the...
6 years 前 | 0
| 已接受