R/check_mat.R

Defines functions check_mat

Documented in check_mat

#' Function to check whether the DICOM matrix has been saved successfully
#' @param file_name the name of the .csv file saved under form_mat_fun()
#' @return a boolean variable
#'
#' @export
#'
#'

check_mat = function(file_name){
  out = file.exists(file_name)
  return(out)
}

Try the DICOMread package in your browser

Any scripts or data that you put into this service are public.

DICOMread documentation built on May 16, 2021, 1:07 a.m.