Info

此问题已关闭。 请重新打开它进行编辑或回答。

how to write this

2 次查看(过去 30 天)
Saad Almalki
Saad Almalki 2020-6-18
关闭: MATLAB Answer Bot 2021-8-20
how to write 9 * u(t-2) in matlab

回答(1 个)

David Hill
David Hill 2020-6-18
If u and t are just scalar
9*u*(t-2);
If u and t are arrays or matrices of the same size
9*u.*(t-2);

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by