Ronald Aono
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
146.727
of 295.712
REPUTACIÓN
0
CONTRIBUCIONES
11 Preguntas
1 Respuesta
ACEPTACIÓN DE RESPUESTAS
36.36%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.274
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.359
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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 ]';...
casi 5 años hace | 0 respuestas | 0
0
respuestasPregunta
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)); ...
casi 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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+((...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
Stoichiometric coefficient using matrix
%finding the appropriate stoichiometric coefficients for the folowing equation a1FeS + a2O2 = a3FeO + a4SO4 % Fe balance coeffi...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
fscanf problem with reading data
FileID =fopen('relp1.dat','r'); formatSpec = '%d %f'; sizeA=[2 Inf]; A = fscanf(FileID,formatSpec,sizeA) fclose(FileID); ...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
alrededor de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
error in arrays line 7
function V = fuelvol2(h) global r H L validInput = true; %to test each value in the vector...
alrededor de 5 años hace | 2 respuestas | 0
2
respuestasnot 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...
alrededor de 5 años hace | 0
| aceptada
Pregunta
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); ...
alrededor de 5 años hace | 2 respuestas | 0