From dd8ccea6f634490cf63b9679b4a6776807e4a1a7 Mon Sep 17 00:00:00 2001 From: "L.Chi" Date: Thu, 3 Feb 2022 02:29:30 -0500 Subject: [PATCH] fix a typo --- FUN_quiver_by_plotV2_cmap_patch_mmap.m | 2 +- doc/Demo_3.1b_vector_time_series/Demo_1x.asv | 34 -------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 doc/Demo_3.1b_vector_time_series/Demo_1x.asv diff --git a/FUN_quiver_by_plotV2_cmap_patch_mmap.m b/FUN_quiver_by_plotV2_cmap_patch_mmap.m index 8c4acc6..c8f2b89 100644 --- a/FUN_quiver_by_plotV2_cmap_patch_mmap.m +++ b/FUN_quiver_by_plotV2_cmap_patch_mmap.m @@ -1,4 +1,4 @@ -function h=FUN_quiver_by_plotV2_mmap(long,lat,u,v,vel_scale,varargin) +function h=FUN_quiver_by_plotV2_cmap_patch_mmap(long,lat,u,v,vel_scale,varargin) % This is an edited version of m_quiver. % It is modified to be comptible with FUN_quiver_by_plotV2 % V1.00 07/09/2021: first version diff --git a/doc/Demo_3.1b_vector_time_series/Demo_1x.asv b/doc/Demo_3.1b_vector_time_series/Demo_1x.asv deleted file mode 100644 index 5068aa6..0000000 --- a/doc/Demo_3.1b_vector_time_series/Demo_1x.asv +++ /dev/null @@ -1,34 +0,0 @@ -clear all -close all -clc - - -%% prepare data - -x = 0:5:270; -u = cosd(x); -v = sind(x); - -%% Example 1.1 A simple case - -figure('position',[ 100 100 980 300]) -hold on - -% please always set xlim and ylim first -xlim([min(x) max(x)]); -ylim([-1.2 1.2]) -vel_plot_scale = 1; % arrow sacle - -% plot arrows -% 'is_correct_angle' is set to true to plot arrows according to its real -% direction, ignorning the ratio between x & y axis. -FUN_quiver_by_plotV2( x, zeros(size(x)), u, v, vel_plot_scale, 'is_correct_angle', true, 'is_plot_head', false); -box on - -plot( x, zeros(size(x)), '-b'); - -title('Example: Vector time series'); - -% Thiprivate function -FUN_easy_export_fig('Example_1.1.jpg','-m2'); -