Salome HOME
Intersection: renaming some variables and refactor to make the algo easier to read.
[tools/medcoupling.git] / doc / tutorial / medcouplingnumpy_fr.rst
index a6dc90e5024ede951dd2fd9dc363f21bffa4d208..d41055ef6dbe05be678da869a0accd4464467c09 100644 (file)
@@ -1,3 +1,4 @@
+.. _medcouplingnumpyptr:
 
 MEDCoupling,  NumPy et SciPy
 ----------------------------
@@ -169,7 +170,7 @@ l'ensemble des lignes de la matrice ``mat`` ayant exactement un élément non nu
 
        indptr = mc.DataArrayInt(mat.indptr)
        indptr2 = indptr.deltaShiftIndex()
-       cellIdsOfSkin = indptr2.getIdsEqual(1)
+       cellIdsOfSkin = indptr2.findIdsEqual(1)
 
 C'est presque fini. Créer le sous maillage contenant uniquement la peau et l'écrire dans 
 un fichier VTK ou MED pour le visualiser avec ParaView. ::