Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
0answers
631 views

How to have smooth sketch drawing on iPhone [closed]

Possible Duplicate: iPhone smooth sketch drawing algorithm I want to develop a iPhone app that support sketch drawing. I used some codes like this in touchesMoved: ...
8
votes
5answers
13k views

How to smoothen a plot in MATLAB?

I have some 9000 points that are plotted on a graph: [Full resolution] Actually, the plot is not as smooth as I wanted it to be. Is there some way I can smoothen the graph to a required degree? ...
4
votes
6answers
3k views

How to 'smooth' data and calculate line gradient?

I'm reading data from a device which measures distance. My sample rate is high so that I can measure large changes in distance (i.e. velocity) but this means that, when the velocity is low, the device ...
2
votes
1answer
56 views

HTML5 Canvas - Unexpected effect with Quadratic Curves

I've been working on a doodling app recently just for kicks. After trying many methods to draw smooth curves with the sample points given by the mouse, I've settled for something using Quadratic ...
2
votes
1answer
423 views

Convolve working with Interpolated Functions in Mathematica

I'm using Mathematica 7. I have an interpolated function, here's an example: pressures = WeatherData["Chicago", "Pressure", {2010, 8}] // DeleteCases[#, {_, _Missing}] & // ...
1
vote
2answers
1k views

Plot smooth line with PyPlot

I've got the following simple script that plots a graph: import matplotlib.pyplot as plt import numpy as np T = np.array([6, 7, 8, 9, 10, 11, 12]) power = np.array([1.53E+03, 5.92E+02, 2.04E+02, ...
0
votes
1answer
194 views

Plot Smooth Curve in PyPlot with Large Y Values

I'm following the advice given in this question for the following data: import matplotlib.pyplot as plt from numpy import array, linspace from scipy.interpolate import spline xdata = array([25, 36, ...
0
votes
3answers
3k views

Help: Android paint/canvas issue; drawing smooth curves

How do I get smooth curves instead of dots or circles, when I draw with my finger on the touch screen, in Android? I am using the following code- public class DrawView extends View implements ...