⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stringkerneldemo.m

📁 Proteins _ String Kernel
💻 M
字号:
%This file compares two string kernel similarity measures. The first is a simple string kernel,%and the second is the mismatch kernel.%Arthur Gretton%Input two stringsdisp('NOTE: strings must contain only characters "a" through "z", since this code was designed for protein strings')string1 = input('Type the first string:','s');string2 = input('Type the second string:','s');seqLength=input('Length of the subsequences being compared:')bothStrings={string1,string2};K_simple = simpleStringKernel(seqLength,bothStrings);K_mismatch = mismatchStringKernel(seqLength,bothStrings);disp('The spectrum kernel similarity score is:');K_simpledisp('The mismatch kernel similarity score is:');K_mismatch

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -