Statistik
RANG
18.813
of 300.840
REPUTATION
2
ANTWORTZUSTIMMUNG
100.0%
ERHALTENE STIMMEN
1
RANG
of 21.092
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Discussions
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Jacobian matrix of neural network
In which order are the derievatives present ? I am unable to figure it out what is the exact order columnwise. Is it layerwise s...
mehr als 6 Jahre vor | 0
Neural network of a single layer
net = feedforwardnet; net.numLayers = x x is the required number of layers. Here 1.
mehr als 6 Jahre vor | 1
| akzeptiert
Frage
Neural network of a single layer
How do I form a neural network with a single layer, so that it wont contain any hidden layer.
mehr als 6 Jahre vor | 1 Antwort | 0
1
AntwortGelöst
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 ...
mehr als 6 Jahre vor
Gelöst
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
mehr als 6 Jahre vor
Gelöst
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
mehr als 6 Jahre vor
Gelöst
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
mehr als 6 Jahre vor
Gelöst
Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...
mehr als 6 Jahre vor
Frage
Resizing an image and dividing it into blocks
%matlab code I = imread(image); [x y] = size(I); x,y [m n] = size(I); J = imresize(I, [256 256]); [x1 y1] = size(J);...
mehr als 7 Jahre vor | 1 Antwort | 0


