Example #1
0
def getLSBFit(notchtype,clawtype,a0,subdir='Mat_Files/'):
    if notchtype == 'circle':
        data = Mio.getMatlabObject(subdir + 'maimi_circle.mat')
    elif notchtype == 'crack':
        data = Mio.getMatlabObject(subdir + 'suo_crack.mat')
    datanew = data[clawtype + notchtype]
    datanew[:,1] = datanew[:,1]/a0
    return datanew
def loadAndCleanFile(filename,subdir='DIC_Files/'):
    dicdict = Mio.getMatlabObject(subdir + filename)
    return cleanUpData(dicdict)
Example #3
0
def loadAndCleanFile(filename, subdir='DIC_Files/'):
    dicdict = Mio.getMatlabObject(subdir + filename)
    return cleanUpData(dicdict)
def getMatlabObject(filename,subdir = 'Mat_Files/'):
    return Mio.getMatlabObject(subdir + filename)