Azzera filtri
Azzera filtri

find the entries in a set of elements

2 visualizzazioni (ultimi 30 giorni)
Thode Sai manish
Thode Sai manish il 3 Feb 2019
Commentato: madhan ravi il 4 Feb 2019
Let A= [35,46, 78, 23, 5, 16, 81, 3, 35]
a, Which command is used to find the seventh entry of A.
b, Which command is used to find the sum of third and fifth entries of A.

Risposte (1)

Mundrathi Venugopal
Mundrathi Venugopal il 4 Feb 2019
A = [35,46, 78, 23, 5, 16, 81, 3, 35];
a = A(7); % to find the seventh entry of A
b = sum(A([3 5])); % to find the sum of third and fifth entries of A
  1 Commento
madhan ravi
madhan ravi il 4 Feb 2019
It‘s obviously homework, don’t provide full solution give hints instead.

Accedi per commentare.

Categorie

Scopri di più su Programming 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!

Translated by