Function Handle for a Rectangular Function
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Would it be possible to create a function handle for a rectangular function defined as follows?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/962295/image.png)
Thanks.
0 Commenti
Risposta accettata
Voss
il 12 Apr 2022
% rect = @(t)double(0<=t & t<=1); % returns double array (1/0)
rect = @(t)0<=t & t<=1; % returns logical array (true/false)
t = -1:0.01:2;
plot(t,rect(t));
ylim([-1 2]);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!