Help with the coding please
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
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.
댓글 수: 0
답변 (1개)
Image Analyst
2013년 6월 15일
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
댓글 수: 0
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!