area_spider_plot( data, plotArea )

버전 1.1.0.0 (3.8 KB) 작성자: Sarah Blum
Plot data in a circular spider (radar) plot either as lines or as shaded area.
다운로드 수: 163
업데이트 날짜: 2018/5/29

라이선스 보기

Adapted from https://de.mathworks.com/matlabcentral/fileexchange/33134-radar-plot?focused=5201638&tab=function

This function plots a spider plot using the columns of P as datapoints.
Inputs:
P : the data as matrix.
optional: a boolean value to indicate whether to plot the data as area or as line plot.
Example usage:
area_spider_plot(P): plots data as line plot
area_spider_plot(P, true): plots data as area plot

legendchoices = {'data1', 'data2', 'data3'};

figure('rend', 'painters', 'pos', [100,100, 1000,800])
idx = area_spider_plot(data);
legend(legendchoices{idx});

인용 양식

Sarah Blum (2025). area_spider_plot( data, plotArea ) (https://kr.mathworks.com/matlabcentral/fileexchange/67524-area_spider_plot-data-plotarea), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2016a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Polar Plots에 대해 자세히 알아보기
도움

도움 받은 파일: Radar plot

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

changed the indices of the legend entries to match the possibly resorted areas

1.0.0.0

added picture
changed description and title