How can I represent this equation on MATLAB

1 回表示 (過去 30 日間)
Ibrahim swidan
Ibrahim swidan 2022 年 4 月 28 日
コメント済み: Ibrahim swidan 2022 年 4 月 30 日
How can I represent this equation on MATLAB
𝑌[𝑛]=3𝑛2−1 𝑤ℎ𝑒𝑟𝑒 −2≤𝑛<3
  2 件のコメント
Mahmoud Ashraf
Mahmoud Ashraf 2022 年 4 月 28 日
編集済み: Mahmoud Ashraf 2022 年 4 月 28 日
can u rewrite the equation?
Ibrahim swidan
Ibrahim swidan 2022 年 4 月 30 日

サインインしてコメントする。

採用された回答

Mahmoud Ashraf
Mahmoud Ashraf 2022 年 4 月 28 日
if i read the equation corrently this code with product the value of y in vector
clear all;
clc
for n=-2:3
y(1,n+3)=3*(n^2)-1;
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by