photo

TS


Actif depuis 2015

Followers: 0   Following: 0

Message

N/A

Statistiques

MATLAB Answers

13 Questions
0 Réponses

RANG
246 132
of 300 352

RÉPUTATION
0

CONTRIBUTIONS
13 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
100.0%

VOTES REÇUS
0

RANG
 of 20 928

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 168 212

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 3

Afficher les badges

Feeds

Afficher par

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 2 réponses | 0

2

réponses

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 2 réponses | 0

2

réponses

Question


While loop for a menu
options=menu('Options','Report Quadrants','Plot Data','Avg. Dist.','Max Dist.','Print Ascii','Exit Program') while (true) o...

plus de 10 ans il y a | 3 réponses | 0

3

réponses

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


Name Storing in a While Loop
while (true) f=input('Enter First Name:','s'); l=input('Enter Last Name:','s'); s1=strvcat(f,l) ...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


Norm with matrices help
When using norm with matrices, is it the average?

plus de 10 ans il y a | 2 réponses | 0

2

réponses

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse

Question


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

plus de 10 ans il y a | 1 réponse | 0

1

réponse