Write a function that takes a vector xyz and returns as output two variables
이전 댓글 표시
Hi, I'm new to MATLAB and i'm trying to solve this problem:
Write a function: named myAver that takes a vector xyz as input argument and returns as output two variables: scalar Mav which stores an average value of the vector and logic variable err. You cannot use MATLAB mean function.
댓글 수: 1
Joseph Cheng
2015년 4월 27일
Is there a specific portion that you are getting stuck on. As this is a homework problem you'll find few people to directly answer it for you. please read http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers to how to phrase your homework questions for people to help you out here.
답변 (1개)
Youssef Khmou
2015년 4월 27일
편집: Youssef Khmou
2015년 4월 27일
try :
function [Mav,Err]=myAver(u)
% hint : use sum, length, std,...
댓글 수: 2
John D'Errico
2015년 4월 27일
Its generally best if you don't give a student (especially ones with novice questions for homework) the complete code for their homework. This helps nobody, and certainly not the student.
Youssef Khmou
2015년 4월 27일
answer is altered.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!