Statistik
13 Fragen
0 Antworten
RANG
144.408
of 300.753
REPUTATION
0
BEITRÄGE
13 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
100.0%
ERHALTENE STIMMEN
0
RANG
of 21.075
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 170.858
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
Frage
Combining two plots and adding color to points
matrix=load('Data'); x = matrix(:,1); y = matrix(:,2); fprintf('The maximum distance between two points is %3...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Average distance from the origin
matrix=load('Data'); x = matrix(:,1); y = matrix(:,2); distances = sqrt((x-0).^2 + (y-0).^2) sum(distances)./(size...
mehr als 10 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Color for points in scatter plot based on quadrants
matrix=load('Data'); x = matrix(:,1); y = matrix(:,2); matrix(x>0 & y>0,3) = 1; matrix(x<0 & y>0,3) = 2; m...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Determining Quadrants in a Matrix
matrix=load('Data'); x=matrix(:,1); y=matrix(:,2); if x>0 & y>0 matrix(:,3)=1 elseif x<0 & y>0 m...
mehr als 10 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
While loop for a menu
options=menu('Options','Report Quadrants','Plot Data','Avg. Dist.','Max Dist.','Print Ascii','Exit Program') while (true) o...
mehr als 10 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Summation of an infinate series
I need help creating a code that computes the summation of L=1/(2^n) where the summation will stop when the difference between v...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Name Storing in a While Loop
while (true) f=input('Enter First Name:','s'); l=input('Enter Last Name:','s'); s1=strvcat(f,l) ...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Name Storage with Repeat loops
f=input('Enter First Name:') l=input('Enter Last Name:') for [f,l] repeat strvcat(f,l) until f=Jed ...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Counting Matrcies so that the numbers are next to them.
So I have a matrix with a phrase that repeats as many times as the user input it to. The problem is that I would like to have a ...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Nearest Neighbor Algorithm Help!
Hey, so I'm struggling trying to find how to use the nearest neighbor algorithm (yes, NOT the command)in order to organize a gro...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Norm with matrices help
When using norm with matrices, is it the average?
mehr als 10 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How do I display these matrices side by side incluing one with character strings.
Ok, so right now I am trying to display some stats and the problem is the fact that the matrix with characters in it will not al...
fast 11 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Combining Matrices Concerning Stats
I'm having trouble getting matrices in separate strings to function with one another. The matrices that I have: R=[1;2;3;4;...
fast 11 Jahre vor | 1 Antwort | 0
