photo

Alberto Acri


Last seen: 3일 전 2020년부터 활동

Followers: 0   Following: 0

통계학

  • Thankful Level 5
  • Thankful Level 2
  • Explorer

배지 보기

Feeds

보기 기준

질문


Merge triangular faces of different meshes
How can I create a matrix that unifies the triangular faces of one 3D figure with the triangular faces of another 3D figure?

29일 전 | 답변 수: 1 | 0

1

답변

질문


combine two stl into one
I have two 3D geometries ('sol_1.stl' and 'sol_2.stl') and their corresponding nodes and faces. I would like to combine the two...

대략 1개월 전 | 답변 수: 1 | 1

1

답변

질문


save (e.g. gif) a rotation of a 3D geometry around to an axis
I would like to rotate the 3D geometry of a cube around two known nodes. How can I modify the code? % ======== CUBE xc=1; yc...

대략 1개월 전 | 답변 수: 1 | 0

1

답변

답변 있음
plot some nodes from an .txt file
Hi @Mathieu NOE I tried using the various functions to retrieve the outermost nodes for other types of curves like the ones att...

대략 1개월 전 | 0

질문


orthogonal projection of 3D nodes onto a 2D plane
I need to project 3D nodes (nodes) onto a 2D plane that I got from the code in FEX. load xyz fobjPlane=planarFit(xyz); for ...

대략 1개월 전 | 답변 수: 1 | 0

1

답변

질문


create a 3D smoothing with csaps (or similar)
To get a better set of nodes arranged in space as a ‘curve’, how can I improve this code? Could you suggest? load curve_1 cc...

대략 2개월 전 | 답변 수: 2 | 0

2

답변

질문


find the inflection point of a curve 3D (set of nodes) in matlab
How can I determine the inflection point of a set of nodes generating a curve in 3D space? load curve_1.mat curve_x = curve_1;...

대략 2개월 전 | 답변 수: 1 | 0

1

답변

질문


create a 3D average plan (or normal) from two 3D plans (or normals)
How can I determine the average plan knowing the plans of the two attached sets of nodes? load plan_1_2.mat figure plot3(plan...

대략 2개월 전 | 답변 수: 1 | 0

1

답변

질문


create a 3D average curve from two 3D curves
I have curves M1 and M2 composed of x nodes in space. Is it possible to create an average curve (up to a specific height, from...

대략 2개월 전 | 답변 수: 1 | 0

1

답변

질문


Split two 3D geometries having the same matrix of nodes and faces
I have a matrix containing the nodes and a matrix containing the triangular faces of two 3D geometries as shown below: Is there...

2개월 전 | 답변 수: 1 | 0

1

답변

질문


Find the coordinates of the nodes of an matrix inside another matrix
I would like to find the coordinates of the nodes of an matrix 'nodes_portion' inside a larger matrix 'nodes_e'. (In this case a...

2개월 전 | 답변 수: 1 | 0

1

답변

질문


calculate the normal of a 3D plane
Hi! I have a circular plane, whose coordinates of the points of the circumference are: P = importdata("node_plane.mat"); plot3...

2개월 전 | 답변 수: 1 | 0

1

답변

질문


extracting matrices of numbers from a text file (txt) also containing words
I have a txt file consisting of numbers and words as you can see in the attachment. I have to create two matrices M1 and M2 wit...

4개월 전 | 답변 수: 1 | 0

1

답변

질문


Locate two neighboring nodes in space so as to divide the matrix into two
I have the coordinates of nodes arranged in space in the shape of 8. Is there a way to locate the nearest points as marked in ...

5개월 전 | 답변 수: 1 | 1

1

답변

질문


generate average numbers between two numbers inside a vector
Hi! It is easier with the figure than with words. I want to create average numbers between two numbers and insert them instead o...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


split a matrix into two matrices according to some rule
How can I generate two separate matrices, one containing the coordinates of line A and the other of line B? load matrix figu...

5개월 전 | 답변 수: 1 | 0

1

답변

질문


search for the position of a number inside a cell (cell with existence of empty rows)
I am trying to look for each row of 'N' inside a cell. I am using 'find' but it doesn't seem to work. I should identify, in t...

5개월 전 | 답변 수: 2 | 0

2

답변

질문


Identify coordinates of nodes in a matrix above/below the coordinates of a plane
Is there a way to identify the coordinates of nodes (black nodes,'DATA_select') above (green selection) or below (purple selecti...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


Create a node in the space between two nodes (A and B) and following the direction normal to a node (N)
Hi. I need to create a node in the space between two nodes (A and B) and following the direction normal to a node (N) as in the ...

6개월 전 | 답변 수: 4 | 0

4

답변

질문


incorrect reading of a txt file
I have this .txt file that I have to read in Matlab. The first line is text and the second line onwards are numbers. Using 'imp...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


reverse operation to 'strsplit'
Hi! I have a cell like 'temp'. And I need to transform it (by adding '_') to get a char like 'a'. How can this be generated? a ...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


calculate the perimeter of a polygon arranged in space
Hi. I need to calculate the perimeter of the geometry in the figure. load plane_new figure x = plane_new(:,1); y = plane_new...

6개월 전 | 답변 수: 2 | 0

2

답변

질문


creating nodes on an axis normal to a plane
Hi! How can I generate more nodes along a normal to the plane? They must extend to a length L. I would like to arrange the nodes...

6개월 전 | 답변 수: 3 | 0

3

답변

질문


Generate coordinates (3D), having the same contour as the initial circle but with a smaller size
Hi! Starting from nodes arranged as a circle in space (blue points), I must generate others having the same outline as the blue ...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


Find coordinates inside a matrix with specific conditions
I need to identify 3 nodes (the green ones, but it can also be the blue ones) within a matrix that generates a "circle" in space...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


Improving the interpolation of nodes arranged in a circle on a plane
I am using this code to improve the interpolation of nodes arranged in a circle on a plane. As input I have the nodes 'outermos...

6개월 전 | 답변 수: 2 | 0

2

답변

질문


Determine the coordinates of the nodes forming the outermost circle
Hi! How can I extract only the coordinates of the nodes forming the outermost circle? The nodes are located on radius R = 4! no...

6개월 전 | 답변 수: 3 | 0

3

답변

질문


Determining area considering nodes arranged in space in an almost circular shape
Hi. I have the attached nodes arranged in space. I would like to calculate the area having the nodes as boundaries. I'm trying ...

6개월 전 | 답변 수: 1 | 0

1

답변

질문


Determining the coordinates of a node between two known nodes and knowing the distances between the known nodes
Hi! This may seem like a rather trivial question. Do you know how to determine the coordinates of a node C knowing node A, node ...

6개월 전 | 답변 수: 3 | 0

3

답변

질문


find similar numbers within a matrix
Hi. I need to identify the position of a triplet of numbers (P) inside an array (M). P = [-3.4970900e+01 -2.0289890e+02 -1...

6개월 전 | 답변 수: 5 | 0

5

답변

더 보기