photo

Sisay Girma


Last seen: 5 mois il y a Actif depuis 2024

Followers: 0   Following: 0

Spoken Languages:
English
Pronouns:
He/him

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Write a function called corners that takes a matrix as an input argument and returns four outputs: the elements at its four corners in this order: top_left, top_right, bottom_left and bottom_right. (Note that loops and if-statements are neither neces
function [top_left, top_right, bottom_left, bottom_right] = corners(A) top_left=A(1,1); top_right=A(1,end); bottom_left=A(end...

5 mois il y a | 0