photo

Alvaro García


Aktiv seit 2015

Followers: 0   Following: 0

Statistik

MATLAB Answers

5 Fragen
0 Antworten

RANG
208.139
of 301.433

REPUTATION
0

BEITRÄGE
5 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
40.0%

ERHALTENE STIMMEN
0

RANG
 of 21.272

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 174.520

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 1

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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(...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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 ...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

fast 11 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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...

fast 11 Jahre vor | 1 Antwort | 0

1

Antwort