Answered
Plot attenuation against wavelength
Hi Hadeel, Here is an example of Signal Attenuation Due to Rainfall: c = physconst('lightspeed'); rr = 20.0; freq = [1:1000...

3 years ago | 0

| accepted

Answered
Is the neural network generated by fitnet function fully conected?
Hi Ramiro, Yes, the neurons of first layer are connected with the second layers. You may run this command to check the weight m...

3 years ago | 0

| accepted

Answered
Euclidian distance for speaker recognition system
Hi Antonio, Here in the disteu file (line 43) d(n,:) = sum((x(:, n+copies) - y) .^2, 1); dimensions of x(:,n+copies) and y...

3 years ago | 0

Answered
How do i practice machine learning ?
Hi Issa, You may prefer the Machine Learning Onramp course, in which there are exercises which will help you to code in Mach...

3 years ago | 0

Answered
Non LInear Logistic Regression
Hi Shathesh, You may first look at these document in order to have an idea of Non Linear Logisitic Regression: From this you ...

3 years ago | 0

Answered
Write a matlab code to generate fourier series for continuous periodic functions.
Hi Abhishek, Here is an example of generating fourier transform of a continous funtion: a = 1;b = 1; %initializing constant...

3 years ago | 0

Answered
Efficient evaluation of Auto Regressive Covariance matrix
Hi Sebastiano, You can do the following things to evaluate efficiently, You can pre-initialize the Covariance(C) matrix by ...

3 years ago | 0

Answered
How to edit weights and bias of narxnet?
Hi Sarwmitra, To change the weights and biases in NARX net: You can train the NARX network for a loop first, and then set th...

3 years ago | 0

Answered
DeepNetworkDesigner - Is there a way to include a common projection layer in DeepNetworkDesigner GUI tool? A layer similar to one used in CCA or correlation Networks?
Hi Rini, You can create a “weightedAdditionLayer” in DeepNetworkDesigner which is a custom layer and can take multiple inputs...

3 years ago | 0

Answered
Function used in Curve Fitting Tool
Hi Teresa, No, they are not the same, maybe they are giving same answer for your question. You can refer this link for your ...

3 years ago | 0

Answered
Problem in forecasting using GRNN
Hi Ulin, While you are creating network grnn = newgrnn(x,y,s); You have used new x and y after changed using “mapstd”, i...

3 years ago | 0

Answered
Validation of the prediction model with observed (new ) dataset
Hi Athira, You can use ‘validation data’ options with LSTM networks. But this option is available from R2018b.

3 years ago | 0

Answered
Multiple outputs in a deep sequential model
Hi Nathan, You can only have a single output for a sequential input model. You can obtain your results by designing different ...

4 years ago | 0

Answered
How can I plot a 3D Histogram with one axis of categorical data?
Hi Aseer, For the hist3 function the user should need a 2D Matrix in which 1st column is x value, and 2nd column is y value. T...

4 years ago | 0

| accepted