vis.frequency.movshon2005_cells
MOVSHON2005_CELLS - reproduced data from 2 examples cells from Movshon et al
[CELL1,CELL2] = MOVSHON2005_CELLS()
Return temporal frequency vs. response rates for 2 example cells
from Figure 1a from Movhson et al. 2005 (J Neurosci., V 25).
Data grabbed with DataThief.
Example:
[cell1,cell2] = vis.frequency.movshon2005_cells();
figure;
plot(cell1(:,1),cell1(:,2),'ro-');
hold on;
plot(cell2(:,1),cell2(:,2),'bo-');
set(gca,'xscale','log');
xlabel('Temporal frequency (Hz)');
ylabel('Response (ips)');
box off;