Community Profile

photo

Daniel


Last seen: 2 years ago Active since 2017

Followers: 0   Following: 0

Message

Statistics

All
  • First Review
  • First Answer
  • Thankful Level 1
  • Solver

View badges

Feeds

View by

Answered
using fprintf to print same length values
b=360.000305 m=9 % fixed length out=sprintf('%9.9f',b) ii=numel(strfind(out,'.')) out=out(1:m+ii) % Azzi...

6 years ago | 0

Question


Reducing overfitting in Neural networks
I am using the Matlab neural network toolbox in order to train an ANN. From past experience, implementing cross validation when...

7 years ago | 1 answer | 1

1

answer

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

7 years ago