photo

Daniele Mascali


Last seen: 1 year ago Active since 2017

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
5 Answers

File Exchange

5 Files

Cody

0 Problems
14 Solutions

RANK
2,033
of 300,379

REPUTATION
32

CONTRIBUTIONS
1 Question
5 Answers

ANSWER ACCEPTANCE
0.0%

VOTES RECEIVED
6

RANK
8,229 of 20,931

REPUTATION
106

AVERAGE RATING
5.00

CONTRIBUTIONS
5 Files

DOWNLOADS
20

ALL TIME DOWNLOADS
884

RANK
31,993
of 168,299

CONTRIBUTIONS
0 Problems
14 Solutions

SCORE
150

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

View badges

Feeds

View by

Answered
Extracting only real numbers from a vector containing both real and complex values
Try this: real(A(imag(A) == 0))

4 years ago | 3

| accepted

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

4 years ago | 2

| accepted

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

7 years ago | 0

| accepted

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

7 years ago | 0 answers | 0

0

answers

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

7 years ago | 1

| accepted

Answered
How to combine arrays using NaN?
One possible solution: FinalArray = nan(size(A)); FinalArray(find(not(isnan(A)))) = B

7 years ago | 0

| accepted