📄 mycode.m
字号:
clc;
clear;
%open the input data file to matrix, and scatter input data
fidr = fopen ('D:\study\notes\2ed semester\neural networks\project\neuranetworks\ME5404EE5904Project\input24.txt', 'r');
[input, count] = fscanf(fidr,'%f\t%f\n', [2,inf]);
input=input';
InputSize=count/2;
fclose(fidr);
figure(1)
for k=1:InputSize;
scatter(input(k,1),input(k,2),'b+');
hold on;
grid on;
title('50000 epochs using 4
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -