calculate area in table

4 Ansichten (letzte 30 Tage)
nur afiqah
nur afiqah am 22 Jul. 2019
Kommentiert: Andrei Bobrov am 23 Jul. 2019
Greetings,
I have a 32 variables containing 1000++ rows and a column containing area for each row. Can Matlab read and call a certain variable in the row and calculate area based on selected variable?

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 22 Jul. 2019
T = readtable('Book1.xlsx');
out = varfun(@sum,T,'g','Class_Name');
  2 Kommentare
nur afiqah
nur afiqah am 23 Jul. 2019
Thank you for the answer, I've reffered to the function varfun and managed to get the answer.
What if we have multiple argument? (e.g.: total area for each class at specific distance provided) I attached the file for your perusal.
Your answer is very much appeciated!
Andrei Bobrov
Andrei Bobrov am 23 Jul. 2019
T = readtable('Book2.xlsx');
out = varfun(@sum,T,'g',{'Class_Name','distance'});

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

KSSV
KSSV am 22 Jul. 2019
Load the data from excel file using xlsread or readtable. Once you have data in workspace......you can get your desired result using some functions and indexing.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by