-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the coherent partial envelop function for TEM
- Loading branch information
Showing
47 changed files
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
% Read atomic positions from cif file | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
function [atoms, lx, ly, lz] = ilm_read_ap_cif(path, rmsd_3d_0, pbc, na, nb, nc) | ||
if(nargin<6) | ||
nc = 1; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
% Read lattice parameter from cif file | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
function [a, b, c] = ilm_read_lat_parm_cif(path) | ||
str_file = fileread(path); | ||
str_file = strtrim(strsplit(str_file, '\n')); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Convergent beam electron diffraction (CBED) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Convergent beam electron Imaging (CBEI) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Electron diffraction (ED) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% STEM electron energy loss spectroscopy (EELS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Energy filtered transmission electron microscopy (EFTEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Exit wave real space (EWRS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Exit wave real space (EWRS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Exit wave real space (EWRS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Exit wave real space (EWRS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Hollow cone transmission electron microscopy (HCTEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% High resolution transmission electron microscopy (HRTEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Imaging scanning transmission electron microscopy (ISTEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
% | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Scanning transmission electron microscopy (STEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% STEM electron energy loss spectroscopy (EELS) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Scanning transmission electron microscopy (STEM) simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% inclusion of TEM aberrerations into a exitwve simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Incident wave simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Incident wave simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Incident wave simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% Incident wave simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) '/mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% inclusion of TEM aberrerations into a exitwve simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
% Specimen creation | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear all;clc; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
% | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
2 changes: 1 addition & 1 deletion
2
mex_examples_multem/example_specimen_slicing_with_amorphous_layer.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
% Copyright 2021 Ivan Lobato <[email protected]> | ||
% Copyright 2023 Ivan Lobato <[email protected]> | ||
|
||
clear; clc; | ||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
% output_multislice = input_multem.ilc_multem perform TEM simulation | ||
% All parameters of the input_multem structure are explained in ilm_dflt_input_multem() | ||
% Copyright 2021 Ivan Lobato <[email protected]>clear; clc; | ||
% Copyright 2023 Ivan Lobato <[email protected]>clear; clc; | ||
|
||
addpath([fileparts(pwd) filesep 'mex_bin']) | ||
addpath([fileparts(pwd) filesep 'crystalline_materials']) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters