1 函数画图fplot % Create a function plot of y = x^3 over the domain of [-2 2]. % Plot with a thick red line. fplot(@(x) x.^3, [-2 2], 'r', 'LineWidth',2) % Add labels and title xlabel('x') ylabel('y') title('y = x^3') 参考网站: https://ww2.mathworks.cn/matla…
命令模式(Command)将命令封装为对象,实现命令发送者和命令接收者的解耦.线程池.MVC框架用到了命令模式,本文根据以下类图,用matlab实现命令模式. Invoker.m (传递命令对象Invoker:持有命令对象,要求命令对象执行请求) classdef Invoker < handle properties command end methods function setOrder(obj,command) obj.command = command; end function ex…
目录 1.save命令 2.load命令 1.save命令 将指定的一个或多个镜像保存成.tar格式的文件,进行打包归档. 查看docker save帮助命令,如下: [root@192 ~]# docker save --help Usage: docker save [OPTIONS] IMAGE [IMAGE...] Save one or more images to a tar archive (streamed to STDOUT by default) Options: -o, -…