Sinan Islam - MATLAB Central
photo

Sinan Islam


Last seen: 3 jours il y a Actif depuis 2016

Followers: 0   Following: 3

Message

Statistiques

MATLAB AnswersFrom 07/16 to 03/25Use left and right arrows to move selectionFrom 07/16Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%

RANG
21 769
of 297 376

RÉPUTATION
2

CONTRIBUTIONS
5 Questions
4 Réponses

ACCEPTATION DE VOS RÉPONSES
60.0%

VOTES REÇUS
1

  • Thankful Level 2
  • First Answer
  • Explorer
  • First Review
  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Réponse apportée
How to normalize data between 0 and 1
X_max = max(X); X_min = min(X); X_scaled = (X - X_min) ./ (X_max - X_min); % scales X to [0, 1]

11 jours il y a | 0

Réponse apportée
Two equal datetime values showing as unequal when compared?
You can convert the dates to string before comparing them.

presque 2 ans il y a | 0

Réponse apportée
How do you resolve conflict when multiple toolboxes have functions with the same name?
I solved this problem by packaging the conflicting function. I have two functions, both named "pca". The first pca function is ...

plus de 2 ans il y a | 0

Question


Retrain Machine Learning Model On New Data
Hello, I have trained an SVM model using fitcsvm and saved it to disk. Now I have new data that were never used by the model...

presque 3 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
How to apply majority voting for classification ensemble in Matlab?
Matlab should consider adding vote ensemble.

environ 4 ans il y a | 1

Question


Indexed Assignment on the Right Side
I am calling function f(x) that returns a matrix of 100 columns. All what I need is just the 10th column. So I need one vecto...

plus de 4 ans il y a | 2 réponses | 0

2

réponses

Question


Function Has Been Partially Removed
Hello, I am using the Financial toolbox. I noticed alot of functions have a warning that a function has been partially removed....

plus de 4 ans il y a | 1 réponse | 0

1

réponse

Question


Time Series Hamilton Filter
Hello, I am just wondering why MATLAB Econometrics Toolbox does not include the Hamilton Filter? Do you have a plan to inclu...

plus de 4 ans il y a | 1 réponse | 0

1

réponse

Question


Balance The Distribution of a Binary or Nominal Variable
Hello, I am trying to predict a binary target with True/False possible values. The dataset consists of 500 observations, 400...

plus de 8 ans il y a | 1 réponse | 0

1

réponse
Go to top of page