photo

Zikobrelli


Last seen: plus d'un an il y a Actif depuis 2013

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
7 Réponses

Cody

13 Problèmes
1533 Solutions

RANG
10 315
of 300 364

RÉPUTATION
4

CONTRIBUTIONS
0 Questions
7 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
0

RANG
 of 20 934

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
79
of 168 407

CONTRIBUTIONS
13 Problèmes
1533 Solutions

SCORE
12 892

NOMBRE DE BADGES
13

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Revival Level 1
  • Knowledgeable Level 1
  • Likeable
  • Famous
  • First Review
  • Quiz Master
  • First Answer
  • ASEE Challenge Master
  • Leader
  • Puzzler
  • Scholar
  • Commenter

Afficher les badges

Feeds

Afficher par

Réponse apportée
how to compute separate line 2 dimensional points
Given X and Y, this function will give you your 'w' and 'b' function [a b] = droite_reg(X,Y) % Linear fitting % Y = a +...

plus de 11 ans il y a | 0

Réponse apportée
Finding indices of array that has a constraint
example: vector B=[1:10] Constraint: greater than 5 idx=find(B>5)% will give you the indices satisfying the constraint...

plus de 11 ans il y a | 0

Réponse apportée
How do I calculate an inverse engine torque map from an engine torque map?
RPM=[500 1000 1500 2000]'; alpha_throttle=[0.1 0.2 0.4 0.8]; torque_map= [67 89 95 108 74 92 11...

plus de 11 ans il y a | 0

Réponse apportée
cut figure I want to see
im not sure i understand what you're asking for but this might help plot(rand(1,10)) xlim([3 4]) ylim([0.7 0.8]) ...

plus de 11 ans il y a | 0

Réponse apportée
Sum every i-th column in matrix seperately
Try sum(A(:,[1 4])) where A is your random matrix.The line above will give you the sums of column 1 and 4. ex: A=spiral(4...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
display extra value in datacursor
Data cursor has a callback function that can be found like this: on your plot: 1)click on the data cursor 2)Right click on ...

plus de 11 ans il y a | 0