Wind Rose / Energy Rose

バージョン 1.2.0.0 (4.01 KB) 作成者: Vincent Wilms
This file creates a wind rose of input data (e.g. wind direction and wind speed)
ダウンロード: 1.3K
更新 2016/4/2

ライセンスの表示

The purpose of this submission is to provide a simple to use wind rose generator which bins the data for you. It is also possible to create an energy rose.
Syntax:
WindRoseData = WindRose(AxisHandle, WindDirectionData, Data, ...
WindDirectionBins, WindSpeedBins, CirclePositions, ...
Title, varargin)

Example:
WindRoseData = WindRose(gca, 360 * rand(1000, 1), 40 * rand(1000, 1), ...
0 : 30 : 330, 2.5 : 5 : 37.5, [5 10 15 20], ...
'My first wind rose!');

The basic idea came from this submission: http://www.mathworks.com/matlabcentral/fileexchange/17748-wind-rose. The best results are procuded using a recent MATLAB version, because of the new anti-aliasing for plots.

引用

Vincent Wilms (2024). Wind Rose / Energy Rose (https://www.mathworks.com/matlabcentral/fileexchange/53461-wind-rose-energy-rose), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2013a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersWeather and Atmospheric Science についてさらに検索
タグ タグを追加
謝辞

ヒントを得たファイル: Wind_rose

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.2.0.0

Reduced the dependencies and included the remaining dependencies in WindRose.m to have just a single file.

1.1.0.0

Implemented support to disable specific or all decorations.

1.0.0.0