photo

Esen Ozbay


Last seen: 13 jours il y a Actif depuis 2020

Followers: 0   Following: 0

Communications engineer. Aspiring clean code writer.

Statistiques

All
  • 3 Month Streak
  • Knowledgeable Level 2
  • MATLAB Central Treasure Hunt Finisher
  • Community Group Solver
  • Project Euler I
  • Promoter
  • Solver
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Biggest sum of series in Matlab
For this question, I think you should use a for loop and check each number one by one. If you use 'n' in your expression, the re...

presque 2 ans il y a | 0

Réponse apportée
Knnsearch: How to output disntace?
If you write [Idx, dist] =knnsearch (nodes,nodes,'K',2); you will obtain the distances mentioned in the documentation.

presque 3 ans il y a | 1

| A accepté

Réponse apportée
Unexpected, unexplained, difference between Matrix linear index and row and column subscripts
You have forgotten to write 1: in the first line. for i=size(P,1)*size(P,2) must be for i = 1:size(P,1)*size(P,2) You proba...

presque 3 ans il y a | 1

Réponse apportée
How to Cell indexing
If you want, you can access X1 as X1=11; X2=22; u{1}=[X1,X2]; u{1}(1) % this will yield ans = 11; The above notation me...

presque 3 ans il y a | 0

| A accepté

Réponse apportée
sim command not opening Simulink model but workspace shows output variable ans ?!
Is it possible that you have created a variable or another function with the same name? Try the command which sim to see what ...

environ 3 ans il y a | 1

Réponse apportée
How to plot multiple lines with gray color
Replace plot(p) with: plot(XAxis, p, 'Color', [0.5 0.5 0.5]) You can write any number between 0 and 1 instead of 0.5, as long...

environ 3 ans il y a | 2

Réponse apportée
what does Validation Patience mean in training Option?
Validation patience is the number of epochs that the algorithm tries to improve the performance before giving up (if the error i...

environ 3 ans il y a | 2

Réponse apportée
How to reference or filter range of data in table using information from another table?
DesiredData = cpit(startIdx:endIdx, 2); maxData = max(DesiredData); Hope this works! :)

environ 3 ans il y a | 0

Réponse apportée
How to reference or filter range of data in table using information from another table?
Here is my attempt: for episodeIdx = 1:size(inflationepisodes,1) epStart = inflationepisodes(episodeIdx, 1); epEnd ...

environ 3 ans il y a | 0

| A accepté

Réponse apportée
What is the difference between info(obj) and infoImpl(obj)?
I have found the other 'info' function in the MATLAB documentation and I am posting it here in case anybody else has the same qu...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to remove image margins
Let your array be called CTscan, and be a 1024x1024 matrix. If you know how many columns you want to delete (let's say 21), you...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Index exceeds matrix dimensions. Error in RandomSelection (line 9) xx=r(1:numOfBits);
You will get this error if numOfBits is greater than max. For example, if max = 5 and numOfBits = 7, then r will be a 1x5 vecto...

plus de 3 ans il y a | 0

Question


What is the difference between info(obj) and infoImpl(obj)?
I cannot find any information about info(obj), which I encountered in some code I am reading. It takes System object as an input...

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

1

réponse

Réponse apportée
I am getting following error while running a program. "
You need to tell us what SOC is, but you probably input an array into the function while you were running it. SOC should be a sc...

plus de 4 ans il y a | 0

Question


In neural network toolbox, do train() and traingdx() call each other?
Hello, I am using the R2018a Neural Network Toolbox, and I was reading the function descriptions. I am trying to understand how...

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

1

réponse