Nicola Bombace - MATLAB Central
photo

Nicola Bombace

MathWorks

Active since 2018

Followers: 0   Following: 0

Statistics

MATLAB AnswersFrom 05/18 to 03/25Use left and right arrows to move selectionFrom 05/18Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Questions
11 Answers

RANK
2,375
of 297,716

REPUTATION
26

CONTRIBUTIONS
0 Questions
11 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 20,469

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 159,428

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
find all possible cycle in graph
Take a look at <https://www.mathworks.com/matlabcentral/answers/421435-find-a-cycles-in-undirected-graph this> answer. You c...

6 years ago | 0

Answered
How can I extract coordinates (x,y,z) from a matrix that match coordinates in another matrix
I think that the problem might be that your number are doubles. I suggest an approach based on distance. You could first use...

6 years ago | 0

| accepted

Answered
Looking for some tips on a Simulation Project!
<https://www.mathworks.com/help/matlab/enumeration-classes.html Enumerations> can be a good way to mark your states.

6 years ago | 1

Answered
interpolation strain tensor field
You can interpolate the strain components easily with the interp3 function, and the method linear. Is it an elastic material?...

6 years ago | 1

| accepted

Answered
How to contour of 4D matrix
You could use <https://www.mathworks.com/help/matlab/ref/isosurface.html isosurface> and later plot the resulting surface

6 years ago | 0

| accepted

Answered
How to lot a point on a map given the distance along a road
I would suggest the use of geobubble

6 years ago | 0

Answered
how to detect collision
You could create a line between the points (x1,y1) and (x2,y2) in the form y = ax + b with <https://www.mathworks.com/help/mat...

7 years ago | 0

Answered
From 2D data to a 3D matrix
Based on your comment, you could obtain the filename using a for loop and the function sprintf. nFiles = 128; for n...

7 years ago | 0

Answered
Compare two matrices/meshgrid/surface/ model digital - distance between models - point data - 3D mesh
The first thing you want to do is interpolate the data from one surface to be at the x,y position of the second surface. Then co...

7 years ago | 1

| accepted

Answered
How do I use pause multiple times?
You can save your breakpoints. Take a look at this <https://www.mathworks.com/matlabcentral/answers/100420-how-do-i-save-the-bre...

7 years ago | 0

| accepted

Answered
Why I will get error:Index exceeds matrix dimensions
The error is because at line 2 you initialise your matix with just one row, and later (at line 6) you try to access an index big...

7 years ago | 0