photo

adriana resendez


2015년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

15 질문
0 답변

순위
201,951
of 297,527

평판
0

참여
15 질문
0 답변

답변 채택
40.0%

획득한 표
0

순위
 of 20,454

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 159,075

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


my xnew isno being displayed and how would i calculate coefficient of determination and the standard error of estimate?
v = 10:10:80; F = [25 70 380 550 610 830 1220 1450]; x = v(:); y = F(:); fssr = @(a) sum((y-a(1)*sinh(a(2)*x))); ...

거의 10년 전 | 답변 수: 1 | 0

1

답변

질문


hwo would i find a root usiong fzero
>> f = @(x) 2-10*x*exp(-0.8*x); >> fplot(f,[0 10]) >> grid on function [xmin,fmin,ea,iter] = lab_19(f,xl...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how would i type in my fraction in the polynomial to find my real and complex roots
fx = x^5-((x^4)/2)-2x^3-x^2-3 roots = fx

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how would i find a postive root
func = @(x) tanh(2*x)/(2*x) = 0.7

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how world i find the lowest root with bisection
function [xr ea iter] = bisect(func, x1, xu, es, maxit) % function [xr ea iter] = bisect(func, x1, xu, es, maxit) % bise...

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how can we display our real roots or points
>> f = @(x) x^3-3*x-1; >> fplot(f, [-10 10]); grid on;

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


i know this is a false postion method code would the question mark be func(es) ?
function [xr ea iter] = falsepos(func, x1, xu, es, maxit) % function [xr ea iter] = falsepos(func, x1, xu, es, maxit) if...

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


working on a bisection code and im pretty lost is it right so far?
function [xr ea iter] = bisect(func,x1, xu, es, maxit) if func(x1)*func(xu)>=0, error('no sign change'); end xold = x1; ...

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


how would my didplay look if a valuse is betwwen 5 and 10
if x==[5 10] ??????

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


i dont quite understand the maclaurium series expansion coding
e(-x) @=.3

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


what is the center finite diffeance approximation and the backward finite
df_b(i)=(fx2-fx1)/h; df_b(i)=( ? )/h; %backward finite differance aprox df_b(i)=( ? )/(2*h); %cent...

대략 10년 전 | 답변 수: 0 | 0

0

답변

질문


i need to plot this function and determine the exact valuse of the derrivative at x=1
F(x)= 2x^3-3x+4 for the interval [-2,2]

대략 10년 전 | 답변 수: 1 | 0

1

답변

질문


how do i input this in built in funtions
multiply and count elements

대략 10년 전 | 답변 수: 2 | 0

2

답변

질문


howwould you in put this in to math lab with functions
add all elements of vector x=[37294]

대략 10년 전 | 답변 수: 2 | 0

2

답변