Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
marker={'r','b','g'}; for i=1:size(X,3) for r=1:size(X,1) for c=1:size(X,2) text(X(r,c,i),Y(r,c,i),Z(r,c,i),num2str(dof(c,r,i))) end end end
对于 的每个值i,我想使用不同的颜色marker来绘制num2str(dof(c,r,i))。我怎样才能做到这一点?谢谢。
i
marker
num2str(dof(c,r,i))
我现在在错误的计算机上(没有用于测试的 matlab),但是
文本(X(r,c,i),Y(r,c,i),Z(r,c,i),num2str(dof(c,r,i)),'颜色',标记{i})
应该管用。但是,如果 size(X,1)>3 这种方式会有问题。