Mary Jeppson
Followers: 0 Following: 0
Statistik
RANG
38.058
of 295.448
REPUTATION
1
BEITRÄGE
7 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
71.43%
ERHALTENE STIMMEN
1
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
While loop to calculate sine
I have written this code that settles on an incorrect value and I can't see what's wrong. Can anyone show me? x = pi/4; ...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortGelöst
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
fast 8 Jahre vor
Gelöst
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
fast 8 Jahre vor
Gelöst
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
fast 8 Jahre vor
Frage
Nested loops to estimate cos(pi/4)
I have written this code that is giving me an error: true = cos(pi/4); n = 2; es = .5^(2-n); x = pi/4; ea = 1; est = ...
fast 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Convert base 2 to base 10 using loop
I've written this loop, but it produces a value of 128 for every number in the mult array instead of going from 128 to 64 to 32 ...
fast 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
maclaurin series code problem
I keep getting "index exceeds matrix dimensions" but i don't see a problem. Can anyone see why this isn't working? n = 4; ...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
matlab code for Euler's method
I have written this code for my class, but keep getting 'index exceeds matrix dimensions' can anyone tell me what's wrong with i...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Problem with Fibonacci For loop
Here is my code: f(1) = input('What is the first number of the sequence?') f(2) = input('What is the second number?') ...
mehr als 8 Jahre vor | 0 Antworten | 1
0
AntwortenFrage
Problem adding components of a vector using a while loop
Can anyone tell me what's wrong with this code? x = [1 23 43 72 87 56 98 33]; b = 0; k = 1; while k<=length(x) ...
mehr als 8 Jahre vor | 2 Antworten | 0