Feeds
提问
Kindly help me understand this code, it is a user defined function for multiplying two polynomials
User-defined function: p1 = [2 5 3]; p2 = [4 0 5 8 12]; p = polymult(p1,p2) p_matlab = conv(p1,p2) function p = polymult...
2 years 前 | 1 个回答 | 0
1
个回答提问
I am trying to write a Matlab program that calculates the average and standard deviation of scores given and determines the letter grade
Sc=[72, 81, 44, 68, 90,53, 80, 75, 74, 65, 50, 92, 85, 69, 41, 73, 70, 86, 61, 65, 79, 94, 69]; Av=mean(Sc) SD=std(Sc) for k=...
2 years 前 | 1 个回答 | 1
