Feeds
질문
Linear Regression Code Formula
function [p_UDF] = LinReg(x, fx) n = length(x) sum_x = 0; sum_x2 = 0; sum_x3 = 0; sum_x4 = 0; sum_y = 0; sum_xy = 0; sum...
거의 7년 전 | 답변 수: 1 | 0
1
답변질문
2nd Order Newtonian Formulation
X = I; % independent variable Y = J'; % have to transpose the vector a = length(X) % # of data points given A - zeros(a) % cr...
거의 7년 전 | 답변 수: 0 | 0
0
답변질문
Using Nested Loops to calculate an equation
Ti = [-20 0 15 33 52]; P = [30 60 75 100]; A = [2 1.5 1] *10^(-5); Tf_all = zeros(1,length(Ti)*length(P)*length(A)); ii = ...
거의 7년 전 | 답변 수: 0 | 0
0
답변질문
Creating Table From Excel Data
GAS = greenhousegasinventorydatadata(greenhousegasinventorydatadata.category == 'Methane') Ireland = GAS(GAS.country_or_area ==...
거의 7년 전 | 답변 수: 2 | 0
