📄 vqexpo.m
字号:
endfunction info_Callback(hObject, eventdata, handles)% hObject handle to info (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of info as text% str2double(get(hObject,'String')) returns contents of info as a double % --- Executes during object creation, after setting all properties.function info_CreateFcn(hObject, eventdata, handles)% hObject handle to info (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');endfunction windowsize_Callback(hObject, eventdata, handles)% hObject handle to windowsize (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of windowsize as text% str2double(get(hObject,'String')) returns contents of windowsize as a double val = abs(str2num(get(hObject,'String'))); set(hObject,'String',num2str(val)); vqexpofn 'analysischange';% --- Executes during object creation, after setting all properties.function windowsize_CreateFcn(hObject, eventdata, handles)% hObject handle to windowsize (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');endfunction windowskip_Callback(hObject, eventdata, handles)% hObject handle to windowskip (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of windowskip as text% str2double(get(hObject,'String')) returns contents of windowskip as a double val = abs(str2num(get(hObject,'String'))); set(hObject,'String',num2str(val)); vqexpofn 'analysischange';% --- Executes during object creation, after setting all properties.function windowskip_CreateFcn(hObject, eventdata, handles)% hObject handle to windowskip (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');end% --- Executes on button press in show_codebook.function show_codebook_Callback(hObject, eventdata, handles)% hObject handle to show_codebook (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hint: get(hObject,'Value') returns toggle state of show_codebook vqexpofn 'updatePlot';% --- Executes on button press in show_errors.function show_errors_Callback(hObject, eventdata, handles)% hObject handle to show_errors (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) vqexpofn 'show_errors';% --- Executes on button press in analyze.function analyze_Callback(hObject, eventdata, handles)% hObject handle to analyze (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) vqexpofn 'analyze';% --- Executes on button press in original_vectors.function original_vectors_Callback(hObject, eventdata, handles)% hObject handle to original_vectors (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hint: get(hObject,'Value') returns toggle state of original_vectors vqexpofn 'updatePlot';% --- Executes on selection change in codebooksize.function codebooksize_Callback(hObject, eventdata, handles)% hObject handle to codebooksize (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns codebooksize contents as cell array% contents{get(hObject,'Value')} returns selected item from codebooksize vqexpofn 'updatePlot';% --- Executes during object creation, after setting all properties.function codebooksize_CreateFcn(hObject, eventdata, handles)% hObject handle to codebooksize (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: popupmenu controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');end% --- Executes on button press in findcodebook.function findcodebook_Callback(hObject, eventdata, handles)% hObject handle to findcodebook (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)function epsilon_Callback(hObject, eventdata, handles)% hObject handle to epsilon (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of epsilon as text% str2double(get(hObject,'String')) returns contents of epsilon as a double% --- Executes during object creation, after setting all properties.function epsilon_CreateFcn(hObject, eventdata, handles)% hObject handle to epsilon (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');endfunction error_thresh_Callback(hObject, eventdata, handles)% hObject handle to error_thresh (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: get(hObject,'String') returns contents of error_thresh as text% str2double(get(hObject,'String')) returns contents of error_thresh as a double% --- Executes during object creation, after setting all properties.function error_thresh_CreateFcn(hObject, eventdata, handles)% hObject handle to error_thresh (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: edit controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');end% --- Executes on button press in findvq.function findvq_Callback(hObject, eventdata, handles)% hObject handle to findvq (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA) vqexpofn 'analyze';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -