Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Help with the coding please

1 Ansicht (letzte 30 Tage)
Diana
Diana am 15 Jun. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have a an input matrix X [231x7] and a weight matrix;w [231x1]. Please help me to code that would calculate the output according to the formula
where x is the mean if input vector x.

Antworten (1)

Image Analyst
Image Analyst am 15 Jun. 2013
Appears to be homework, so don't expect anyone to give you a complete solution. Here's a hint:
x = mean(X(:));
exponent = (-1/0.08) * (X-x) * ......you can do the rest, I'm sure

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by