简体   繁体   中英

Scatter Plot in Matlab

I have a set of data:

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

and so on...

I need to do a scatter plot of poo , po1 and po2 .

Stated in matlab that my m-file for scatter plotting are Too many input arguments .

如果变量是x,y,z坐标向量,请尝试:

scatter3(p00, p01, p02)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM