photo

Alvaro García


Actif depuis 2015

Followers: 0   Following: 0

Statistiques

MATLAB Answers

5 Questions
0 Réponses

RANG
107 255
of 301 481

RÉPUTATION
0

CONTRIBUTIONS
5 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
40.0%

VOTES REÇUS
0

RANG
 of 21 298

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 174 744

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


for loop: Attempted to access y(2); index out of bounds because numel(y)=1. How to solve this error?
a=1; b=2; n=10; h=(b-a)/n; x(1)=a; for i=a:n x(i+1)=x(i)+h; y(i)=x(i).^3; area2(i)=((((y(i)-0)+(y(i+1)-0))/2)*x(...

presque 11 ans il y a | 1 réponse | 0

1

réponse

Question


include a for loop instead of x=a:h:b (h=step size)?
a=1; b=2; n=10; h=(b-a)/n; x=a:h:b; y=x.^3; ya=a.^3; yb=b.^3; area = h/2*(ya+yb+2*(sum(y)-ya-yb)); disp(area) end ...

presque 11 ans il y a | 1 réponse | 0

1

réponse

Question


Problem with for loop
areaneeded=3.75*100.1/100; %disp(areaneeded) %area needed for a 0.1% error a=1; b=2; for n=1:100; h=(b-a)/n...

presque 11 ans il y a | 1 réponse | 0

1

réponse

Question


How can i run the for loop with a stepsize smaller than one?
I have this code: c=0:0.001:1; volume =0.75*pi*c-pi*c.^3; plot(c,volume) n=4; for i=1:4 fu...

presque 11 ans il y a | 2 réponses | 0

2

réponses

Question


if condition not working, any ideas why?
% x=0:0.1:2; y=12*x.^2+10*x-28;%f(x) t=-13*x.^2+15*x+28;%g(x) h=25*x.^2-5*x-56; plot(x,y,'r',x,t,x,h,'b') title('interse...

presque 11 ans il y a | 1 réponse | 0

1

réponse