Right now im trying to make average grades on matlab from a chart on excel. How do I say on matlab the hw row is 15% of my final grade and the test is 30%.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Collin Kerr
el 8 de Mzo. de 2016
Comentada: Jonathan Azarani
el 23 de Mzo. de 2016
clc A = xlsread('Joke.xlsx')
B = mean(A(1:42,1))
C = mean(A(1:16,2))
D = mean(A(1:3,3))
E = mean(A(1:1,4))
F = mean(A(1:1,5))
G = mean(A(1:1,6))
M = mean(A)
Z = mean(M)
prompt = 'What is your name?';
N = input(prompt,'s');
X = sprintf('%s your current grade in the class is %0.0f.',N,Z);
disp(X)
I need to some how say E which is tests taken are 30 percent of the total grade, and D which is hw is 10, etc.. for the others
1 comentario
Jonathan Azarani
el 23 de Mzo. de 2016
I'm having the same problem but i can't even get my excel spreadsheet to work with my matlab.
Respuesta aceptada
Chad Greene
el 8 de Mzo. de 2016
If E is worth 30% of the final grade and D is worth 10% of the final grade,
FinalGrade = A*Aweight + ... + D*0.1 + E*0.3 + ...
for a total of 100%
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!