Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

how to write this

1 vue (au cours des 30 derniers jours)
Saad Almalki
Saad Almalki le 18 Juin 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
how to write 9 * u(t-2) in matlab

Réponses (1)

David Hill
David Hill le 18 Juin 2020
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);

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by