Community Profile

photo

Ronald Aono


Aktiv seit 2019

Followers: 0   Following: 0

Statistiken

  • Thankful Level 2
  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


newtons non linear method
% start iteration loop clear all x2 = [1 0.5]'; x1 = sqrt(4-(4*x2.*x2)); % satisfies eqn. 1 xold = [x1 x2 ]';...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


non linear equation using newtons method
% start iteration loop if x2 == 1.0, x2 = 1.001; end % don't allow x2 = 3 as guess x1 = sqrt(4-(4*x2.*x2)); ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


analytical solution of ODEs
%calculating the analytical solution for d^2T/dr^2 + 1/r dT/dr = 0 syms r r = linspace(0.005,0.1,10); dT = dsolve('1*D2r+((...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Stoichiometric coefficient using matrix
%finding the appropriate stoichiometric coefficients for the folowing equation a1FeS + a2O2 = a3FeO + a4SO4 % Fe balance coeffi...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


finite difference method code
% set domains limits and boundary conditions xo = pi/2; xf = pi; yxo = 1; yxf = 1; N = 10; % compute interval size and discr...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


fscanf problem with reading data
FileID =fopen('relp1.dat','r'); formatSpec = '%d %f'; sizeA=[2 Inf]; A = fscanf(FileID,formatSpec,sizeA) fclose(FileID); ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


using fscanf to open file
clear all TOL=[10^-3 10^-4 10^-5 10^-6 10^-7 10^-8 10^-9] fileID = fopen('relp1.dat'); formatSpec = '%f'; A1= fscanf...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


taylor series using forward method
% question 3 part b clc clear all real_val=14301/400; h=[10^-4 10^-3 10^-2 10^-1 10^0 10^1];%step sizes %defining the funct...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


taylor series in matlab
Given the function: 5 4 2 f (x) = x^5 - 2x^4 + 3x^2- 1 a. Compute the exact derivative of f(x) at x = 2.1. b. Estimate the fi...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


error in arrays line 7
function V = fuelvol2(h) global r H L validInput = true; %to test each value in the vector...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
not enough argument input
ok this is my other command window were the values of T and RH have been defined, but i still get the same error code % th...

mehr als 4 Jahre vor | 0

| akzeptiert

Frage


not enough argument input
function Td = dew_point(T,RH) a = 17.27; b = 237.7; f = (a.*T)/(b+T) + ln(RH/.100); Td = b.*f ./(a - f); ...

mehr als 4 Jahre vor | 2 Antworten | 0

2

Antworten