hi, i have some multiple plot like this,
plot3(sLLD(132:350,1),sLLD(132:350,2),sLLD(132:350,3),'o','MarkerFaceColor','[0 0.2 1]');
starts from one specific length and finish like that, sLLD is 4-column matrix, i want to change MarkerSize based on last column in sLLD. please guide me :) ;) . tnx tnx tnx

 채택된 답변

Walter Roberson
Walter Roberson 2018년 7월 18일

1 개 추천

It is not possible to have a "primitive line object" or "lineseries object" that has a different marker size for each point.
As you are specifying a marker 'o' but no line style, then you are not actually drawing a line. In that case, you should switch to using scatter3()
scatter3(sLLD(132:350,1), sLLD(132:350,2), sLLD(132:350,3), sLLD(132:350,4), [0 0.2 1], 'filled')

댓글 수: 1

milad farshbaf
milad farshbaf 2018년 7월 18일
thankyou, im really grateful to you for your prompt reply.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

태그

질문:

2018년 7월 18일

댓글:

2018년 7월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by