Problem 44409. 特定の値がベクトル内に含まれているかを確認するコードを書こう

ベクトル b にあるスカラ値 a が含まれていれば出力として 1 を返し、含まれていなければ 0 を返すような関数を作成しましょう。

例:

a = 3;
b = [1,2,4];

スカラ値 3 はベクトル b に含まれていないので、関数は 0 を返します。

a = 3;
b = [1,2,3];

スカラ値 3 はベクトル b に含まれているので、関数は 1 を返します。

Solution Stats

71.7% Correct | 28.3% Incorrect
Last Solution submitted on Mar 12, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers290

Suggested Problems

More from this Author12

Community Treasure Hunt

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

Start Hunting!