MATLAB
MATLAB
(OP)
E=summation_x summation_y summation_z (v^2(x,y,z)).
How to implement the above formula in MATLAB?
How to implement the above formula in MATLAB?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
|
RE: MATLAB
http://www.mathworks.com/help/matlab/ref/sum.html?...
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
[IMG http://tinyurl.com/7ofakss]
Need help writing a question or understanding a reply? forum1529: Translation Assistance for Engineers
Of course I can. I can do anything. I can do absolutely anything. I'm an expert!
There is a homework forum hosted by engineering.com: http://www.engineering.com/AskForum/aff/32.aspx
RE: MATLAB
Store numbers in x vector and then use sum(x).
RE: MATLAB