이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
quiverwcolorbar adds functionality to the original quiver function by assigning color to the arrows according to the vector magnitude. The corresponding colorbar spans the minimum and maximum values of the dataset or can be specified by the user. Any changes to the colorbar boundaries change the vector colors accordingly.
Syntax:
quiverwcolorbar(x,y,u,v,scale,'bounds',[colormin colormax])
Inputs:
x, y: Vector locations
u, v: Vector directions (East-West, North-South)
scale: Scalar value to set vector lengths
'bounds': Optional setting to specify colorbar axis minimum and maximum values
Example:
x = rand(1,50).*100;
y = rand(1,50).*100;
u = rand(1,50) .* 10;
v = rand(1,50) .* 10;
scale = 0;
figure; quiverwcolorbar(x',y',u',v',scale); %compare to:
figure; quiverwcolorbar(x',y',u',v',scale,'bounds',[0 10]);
인용 양식
Melissa Day (2026). quiverwcolorbar (https://kr.mathworks.com/matlabcentral/fileexchange/40224-quiverwcolorbar), MATLAB Central File Exchange. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.8.0.0 | Fixed so scale can be used to change arrow size |
||
| 1.7.0.0 | Minor typo fixes |
||
| 1.5.0.0 | Fixed some typos, added bit in case min(xyuvvrNNs) < colormin |
||
| 1.3.0.0 | changed spacing in description |
||
| 1.2.0.0 | Fixed some typos, added bit in case min(xyuvvrNNs) < colormin |
||
| 1.1.0.0 | n/a |
||
| 1.0.0.0 |
