photo

Benjamin Trivers


Last seen: mehr als 5 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

MATLAB Answers

13 Fragen
0 Antworten

RANG
106.033
of 300.780

REPUTATION
0

BEITRÄGE
13 Fragen
0 Antworten

ANTWORTZUSTIMMUNG
0.0%

ERHALTENE STIMMEN
0

RANG
 of 21.086

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 171.018

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

Feeds

Anzeigen nach

Frage


Different launch angles for a tennis ball
How far can you throw a tennis ball? Our goal is to find the launch angle θ, measured up from the ground, that will result in th...

mehr als 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


euler function that you can reuse with different values?
function [t, y, yprime]=euler(f,t0,tN,y0,N) h=(tN-t0)/N; t=t0:N:tN; y=zeros(1,N+1); yprime=f(t,y); y(1)=y0; t(1)=t0; for ...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Approximation of integers and forming a table
function: function y=func(x) y=sqrt(4−x^2); end The midpoint rule: function y=Mid(a,b,N) dx=(b-a)/N; y=0; ...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


approximation of pi with arctan
term = @(x,n) (-1).^(n+1).*((x.^(2*n-1))./(2*n-1)); a1 = 0; a2 = 0; for n = 1:10 a1 = a1 + term(1/5,n); a2 = a2 + term(...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


approximation integrals using three rules
IN MATLAB ONLY Using these four functions, create a script to publish, writing a cell that uses N=10,20,40,80,160,320 to calcul...

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Power series for arctan
Write a script that does the following: Approximate π using the formula from trigonometry (π = 4arctan1) and arctan values using...

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


converting string code into numbers?
Write a function m-file called stringcode that takes a string as input and produces an array containing a code for each letter i...

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


can't get all the other characters = 26
Write a function m-file called stringcode that takes a string as input and produces an array containing a code for each letter i...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


3x3 matrix with while loop
Produce a random 3x3 matrix A that is invertible and display it. Hint: Use a while-loop until you get one with non-zero determi...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Create an .m file
Create an .m file that is a function that creates an array of N random integers in the range from -9999 to 9999. It should be i...

fast 6 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Determine the number of y-values less than the number 2.0
y = 2.5 + 1 * randn(100,1) sum=0; N=length(y); for i = 1 : N sum= sum + y(i); end average=sum/N; fprintf('the avera...

fast 6 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Calculate the result and absolute error for each partial sum: N = 10, 160, and 640. You should use for-loops and not commands like symsum. (b) Find the smallest value of N for which the absolute error is smaller than 10−4 (1e − 4). You should use a w
My question is: Calculate the result and absolute error for each partial sum: N = 10, 160, and 640. You should use for-loops an...

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten