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.
我有一组数据:
A = [2/3 -1/3 -1/3 ; -1/3 2/3 -1/3 ; -1/3 -1/3 2/3] B = [ 0 0 0 ] C = [ 0 0 1 ]' D = [ 0 1 0 ]' p00 =A*B-A*B p01 =A*B-A*C p02 = A*B-A*D
等等...
我需要做一个和poo的散点图。po1po2
poo
po1
po2
在 matlab 中说明我用于散点图的 m 文件是Too many input arguments.
Too many input arguments
如果变量是 x,y,z 坐标向量,请尝试:
scatter3(p00, p01, p02)