scatter Plot issues in Plotting
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
I am doing a scatter Plot . In that I am loading the excel file for 27 cases and plotting in scatter plot . But by using for loop only last case value it is taking and plotting instead it should plot for all the cases . Can someone please help what is the error in the code . Thank you in advance .
A=xlsread('Compare_All_cases','B6:AB9')
for i=1:length(A)
    time=[25,50,75,200]
    Y=A(:,i)
    scatter(time,Y,'filled','r')
    for j= 1:4
        text(time(j),Y(j),sprintf('(%.0f)',Y(j)))
    end 
end 
댓글 수: 0
채택된 답변
  KSSV
      
      
 2022년 2월 7일
        A=xlsread('Compare_All_cases','B6:AB9')
figure
hold on
for i=1:length(A)
    time=[25,50,75,200]
    Y=A(:,i)
    scatter(time,Y,'filled','r')
    for j= 1:4
        text(time(j),Y(j),sprintf('(%.0f)',Y(j)))
    end 
end 
You need not to use, a loop. You can do it in a single step. 
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Scatter Plots에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

