Hi Ali,
PCA (Principal Component Analysis) is a dimensionality reduction technique that projects high-dimensional data into a lower-dimensional space. The output of PCA is not a selection of original features but rather a set of new features (principal components) that are linear combinations of the original features. Therefore, when you reduce your data from 71012 dimensions to 139 dimensions using PCA, you're not selecting 139 features out of the 71012 but rather transforming the data into a new space represented by 139 principal components.
Although you cannot directly find which 139 features from the original 71012 were selected, you can perform an inverse transformation to approximate the original high-dimensional data using the principal components and the PCA transformation matrix. This won't give you the original data exactly (especially if you've reduced dimensions significantly), but it will be a close approximation. Given your PCA output, you can perform the inverse transformation as follows:
% Assuming mappedX, mapping.mean, and mapping.M are already defined from your PCA
approxOriginalData = (mappedX * mapping.M') + repmat(mapping.mean, size(mappedX, 1), 1);