The specwin class has a plot method which will plot the response of the given window function in the current Figure:

	w = specwin('Kaiser', 100, 150);
	figure
	plot(w)
	
Kaiser Window

Windows can also be visualised using MATLAB's wvtool. To use wvtool with a specwin window object, just call:

	wvtool(w.win);