photo

Daniele Mascali


Last seen: environ un mois il y a Actif depuis 2017

Followers: 0   Following: 0

Statistiques

All
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 3
  • First Review
  • 5-Star Galaxy Level 2
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Extracting only real numbers from a vector containing both real and complex values
Try this: real(A(imag(A) == 0))

plus de 3 ans il y a | 3

| A accepté

Réponse apportée
Correlation Coefficient of two 3-D matrices
Considering A and B your two matrices, you could use the following code: %reshape each matrix SIZE = size(A); A_2d = reshape(...

plus de 3 ans il y a | 2

| A accepté

Réponse apportée
How do I loop through a structure field which contains multiple arrays?
If you want to make your last attempt work, you might use eval: eval(['plot(subjects.sessions.trials(i).data.angles.',AngleName...

plus de 5 ans il y a | 0

| A accepté

Question


Edges of scatter plot don't respect layers
When using scatter plot, e.g.: scatter(X,Y,17,CUSTOMCOLORMAP,'filled','MarkerEdgeColor',[0 0 0],'marker','o','linewidth',0.1)...

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

0

réponse

Réponse apportée
How to write all data of a cell array into one big list?
If A is your cell array, you might try: [A{:}]

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to combine arrays using NaN?
One possible solution: FinalArray = nan(size(A)); FinalArray(find(not(isnan(A)))) = B

plus de 5 ans il y a | 0

| A accepté