blob: 541c2eb1f3b0ea344c8d6b43681d9da515e4a1b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/idframe.R
\name{plot.idfrd}
\alias{plot.idfrd}
\title{Plotting idfrd objects}
\usage{
\method{plot}{idfrd}(x, col = "steelblue", lwd = 1)
}
\arguments{
\item{x}{An object of class \code{idframe}}
}
\description{
Generates the bode plot of the given frequency response data. It uses the
ggplot2 plotting engine
}
\examples{
data(frf)
frf <- spa(data) # Estimates the frequency response from data
plot(frf)
}
\seealso{
\code{\link[ggplot2]{ggplot}}
}
|