이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
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 (2026). area_spider_plot( data, plotArea ) (https://kr.mathworks.com/matlabcentral/fileexchange/67524-area_spider_plot-data-plotarea), MATLAB Central File Exchange. 검색 날짜: .
도움
도움 받은 파일: Radar plot
