Community Profile

photo

Aisha Shamim


Active since 2019

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


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...

5 years ago | 1 answer | 0

1

answer

Question


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...

5 years ago | 0 answers | 0

0

answers

Question


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 = ...

5 years ago | 0 answers | 0

0

answers

Question


Creating Table From Excel Data
GAS = greenhousegasinventorydatadata(greenhousegasinventorydatadata.category == 'Methane') Ireland = GAS(GAS.country_or_area ==...

5 years ago | 2 answers | 0

2

answers