I have a, b and c. for different values of c i plot a vs b. since it took a lot of time manually to feed in different values of c and run the prog. I used a for loop and used 3d plot. Is there a way by which i can plot using diff color for diff c.

3 次查看(过去 30 天)
I have a, b and c. for different values of c i plot a vs b. since it took a lot of time manually to feed in different values of c and run the prog. I used a for loop and used 3d plot. Is there a way by which i can plot using diff color for diff c.
i used the following commands
plot3(bi(:,1),bi(:,2),bi(:,3),'.b','markersize',1)
xlabel('c')
ylabel('a')
zlabel('b')
i just want multiple scatter plots for different values of 'c'.

采纳的回答

Image Analyst
Image Analyst 2013-2-15
theColor = rand(1,3); % Whatever 3 numbers you want between 0 and 1.
plot3(bi(:,1),bi(:,2),bi(:,3),'.b','markersize',1, 'Color', theColor);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by