Determine if an array has any elements that are zero ?

35 ビュー (過去 30 日間)
zk1998
zk1998 2019 年 3 月 17 日
編集済み: dpb 2019 年 3 月 17 日
Hello I am trying to write a function file that will take a row vector representing a polynomial and return a 0 if it at least one of the coefficents of the polynomail is zero and a 1 if otherwise.
Many thanks in advance.

採用された回答

dpb
dpb 2019 年 3 月 17 日
編集済み: dpb 2019 年 3 月 17 日
function flg = isFullPoly(b)
% isFullPoly(b) returns T if all coefficients, b, nonzero, F otherwise
flg=all(b);
end
This one really doesn't need a function for other than "syntactic sugar" to indicate what are testing which a comment could do as well...but, nothing really wrong with doing so if wish...

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by