.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/datasets/plot_dataset_arithmetic.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_datasets_plot_dataset_arithmetic.py: ================== Dataset Arithmetic ================== This plots example volume data onto an example subject, S1, onto a flatmap using quickflat. In order for this to run, you have to have a flatmap for this subject in the pycortex filestore. Once you have created a cortex.Volume object, you can manipulate it with normal arithmetic operators like +, -, *, /, and ** .. GENERATED FROM PYTHON SOURCE LINES 13-41 .. rst-class:: sphx-glr-horizontal * .. image-sg:: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_001.png :alt: plot dataset arithmetic :srcset: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_001.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_002.png :alt: plot dataset arithmetic :srcset: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_002.png :class: sphx-glr-multi-img * .. image-sg:: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_003.png :alt: plot dataset arithmetic :srcset: /auto_examples/datasets/images/sphx_glr_plot_dataset_arithmetic_003.png :class: sphx-glr-multi-img .. rst-class:: sphx-glr-script-out .. code-block:: none Generating a flatmap cache ** (inkscape:4347): WARNING **: 21:52:39.569: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function. ** (inkscape:4362): WARNING **: 21:52:40.545: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function. ** (inkscape:4375): WARNING **: 21:52:41.465: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function. | .. code-block:: Python import cortex import numpy as np np.random.seed(1234) import matplotlib.pyplot as plt subject = 'S1' xfm = 'fullhead' # Creating a random dataset that is the shape for this transform with one # entry for each voxel test_data = np.random.randn(31, 100, 100) # This creates a Volume object for our test dataset for the given subject # and transform vol_data = cortex.Volume(test_data, subject, xfm, vmin=-2, vmax=2) cortex.quickshow(vol_data) plt.show() # Now you can do arithmetic with the Volume vol_plus = vol_data + 1 cortex.quickshow(vol_plus) plt.show() # You can also do multiplication vol_mult = vol_data * 4 cortex.quickshow(vol_mult) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 14.258 seconds) .. _sphx_glr_download_auto_examples_datasets_plot_dataset_arithmetic.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_dataset_arithmetic.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_dataset_arithmetic.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_dataset_arithmetic.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_