标签: matlab colors loglog
我需要绘制24条线,使用不同的非重复颜色。如何在对数函数中使用由distinctable_colors创建的矩阵为行设置不同的颜色(总共24行)?
我收到错误消息:错误的号码分配。左侧缺少[]。
元素的尺寸相同且相等[1 248]。
代码:
col = distinguishable_colors(24); figure x = loglog(a1.tau, a1.sm, a2.tau, a2.sm, ..., a24.tau, a24.sm); x.Color = col;