Ronald Aono
Followers: 0 Following: 0
Statistics
RANK
146,699
of 295,569
REPUTATION
0
CONTRIBUTIONS
11 Questions
1 Answer
ANSWER ACCEPTANCE
36.36%
VOTES RECEIVED
0
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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 ]';...
5 years ago | 0 answers | 0
0
answersQuestion
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)); ...
5 years ago | 1 answer | 0
1
answerQuestion
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+((...
5 years ago | 1 answer | 0
1
answerQuestion
Stoichiometric coefficient using matrix
%finding the appropriate stoichiometric coefficients for the folowing equation a1FeS + a2O2 = a3FeO + a4SO4 % Fe balance coeffi...
5 years ago | 1 answer | 0
1
answerQuestion
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...
5 years ago | 1 answer | 0
1
answerQuestion
fscanf problem with reading data
FileID =fopen('relp1.dat','r'); formatSpec = '%d %f'; sizeA=[2 Inf]; A = fscanf(FileID,formatSpec,sizeA) fclose(FileID); ...
5 years ago | 1 answer | 0
1
answerQuestion
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...
5 years ago | 1 answer | 0
1
answerQuestion
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...
5 years ago | 1 answer | 0
1
answerQuestion
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...
5 years ago | 0 answers | 0
0
answersQuestion
error in arrays line 7
function V = fuelvol2(h) global r H L validInput = true; %to test each value in the vector...
5 years ago | 2 answers | 0
2
answersnot 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...
5 years ago | 0
| accepted
Question
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); ...
5 years ago | 2 answers | 0