I want to transform the canonical coordinates system , i.e. whose basis vectors are (1,0) and (0,1):
\documentclass[a4paper, 12pt]{report}
\usepackage{fullpage}[1cm]
\usepackage{tikz}
\usepackage{pdfpages}
\begin{document}
\begin{tikzpicture}[scale=3]
\def \xLabel {$X$};
\def \yLabel {$Y$};
\draw[step=.2cm,gray,very thin] (-1.4,-1.4) grid (1.4,1.4);
\draw (-1.5,0) -- (1.5,0);
\draw (0,-1.5) -- (0,1.5);
\end{tikzpicture}
\end{document}
To a new coordinates system with basis (1,-0.5) and (-0.5,1) (for example)


Many Thanks !!

