Three element vector function?

5 ビュー (過去 30 日間)
Ian
Ian 2014 年 1 月 31 日
編集済み: Walter Roberson 2014 年 1 月 31 日
Create a MATLAB function that, given a three element vector [x1 x2 x3] as input, calculates r = x1^2 + x2^2 − x3^2.

採用された回答

Amit
Amit 2014 年 1 月 31 日
function r = myfunc(x)
r = x(:,1).^2 + x(:,2).^2 - x(:,3).^2 ;

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeModeling についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by