点击主页上的运行大按钮
或者:按下F5
或者在命令行窗口输入m文件名字hello_world
MATLAB输出hello world代码:
新建文件hello_world.m
保存在当前工作路径下
运行
function [ output_args ] = Untitled( input_args )
%UNTITLED 此处显示有关此函数的摘要
% 此处显示详细说明
disp('hello World')
end
点击主页上的运行大按钮
或者:按下F5
或者在命令行窗口输入m文件名字hello_world
MATLAB输出hello world代码:
新建文件hello_world.m
保存在当前工作路径下
运行
function [ output_args ] = Untitled( input_args )
%UNTITLED 此处显示有关此函数的摘要
% 此处显示详细说明
disp('hello World')
end