摘要: 1.categorical数组 用数字来代替文本; 脚本中: A=[... 3,1;... 2,3;... 2,1;... 1,3....]Valueset=[1:3];catnames={'青少年','中年','老年'};B=categorical(A,Valueset,catnames,'Ord 阅读全文
posted @ 2022-04-29 21:17 无敌小金刚 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 1.创建结构体数组 1)一个一个追加的方式创建,效率较低 packages(1)=struct('item_no',123,'cost',19.99,'price',39.95,'code','g')packages = 包含以下字段的 struct: item_no: 123 cost: 19.9 阅读全文
posted @ 2022-04-29 17:33 无敌小金刚 阅读(2823) 评论(0) 推荐(0) 编辑
摘要: 结构体由字段和值构成 1.用struct()函数创建 package=struct('item_no',123,'cost',19.9,'price',39.95,'code','g')package = 包含以下字段的 struct: item_no: 123 cost: 19.9000 pric 阅读全文
posted @ 2022-04-27 16:22 无敌小金刚 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 1.元胞数组>> {23,'a',1:2:9,"hello"}ans = 1×4 cell 数组 {[23]} {'a'} {1×5 double} {["hello"]}>> [1 4 6 76]ans = 1 4 6 76>> {1 4 6 76}ans = 1×4 cell 数组 {[1]} 阅读全文
posted @ 2022-04-27 11:21 无敌小金刚 阅读(692) 评论(0) 推荐(0) 编辑
摘要: num2str(38)ans = '38'>> int2str(pi)ans = '3'>> num2str(pi)ans = '3.1416'>> num2str(2:5)ans = '2 3 4 5'>> int2str(2:5)ans = '2 3 4 5'>> num2str(3.45678 阅读全文
posted @ 2022-04-26 11:25 无敌小金刚 阅读(812) 评论(0) 推荐(0) 编辑
摘要: 1.strcmp()与isequal() strcmp({'A','B'},{'A','B'}) %数组中的每个元素进行判断 ans = 1×2 logical 数组 1 1 >> isequal({'A','B'},{'A','B'}) %数组整体进行判断ans = logical 1>> str 阅读全文
posted @ 2022-04-26 10:58 无敌小金刚 阅读(1256) 评论(0) 推荐(0) 编辑
摘要: 加号用于连接字符串 "hello"+"goodbey"ans = "hellogoodbey" 方括号也用于连接字符>> ['hello','goodbey']ans = 'hellogoodbey' strcat() 用于捏合字符,字符串,但是char类型空格不加入,string类型空格会加入>> 阅读全文
posted @ 2022-04-25 21:58 无敌小金刚 阅读(2919) 评论(0) 推荐(0) 编辑
摘要: 1.class():测试变量类型 Apple_char='Apple'Apple_char = 'Apple'>> class(Apple_char)ans = 'char'>> Apple_string="Appple"Apple_string = "Appple">> class(Apple_s 阅读全文
posted @ 2022-04-25 20:47 无敌小金刚 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 1.在脚本中写入变量的值,在命令行窗口也是可以访问和调用的;两者都可以相互调用; 2.如果在脚本中,变量写在函数中,则在命令行窗口中是不可以访问的;因为变量的作用域在函数内部; 3.函数内部的变量有记忆,即记住上次执行时,变量的值; function persistentTestpersistent 阅读全文
posted @ 2022-04-22 17:14 无敌小金刚 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1.多个输出变量的函数 function [area,perimeter]=areaperi(length,width)area=length*width;perimeter=2*(length+width);end 命令行窗口: [a,b]=areaperi(5,2) //返回值有面积和周长 a 阅读全文
posted @ 2022-04-22 16:35 无敌小金刚 阅读(1947) 评论(0) 推荐(0) 编辑