Revision a2e6a2b1dd1da48e502fc25126aa9b8a139ed543 authored by GUANGMING ZANG on 13 August 2018, 08:44:48 UTC, committed by GitHub on 13 August 2018, 08:44:48 UTC
1 parent 80d039c
test_lds.m
clear all,close all, clc;
p = 2; % base
Np = 100; % Nb projections
Ns = 1; % Partition of the circle into Ns segments
Nz = 50; % Add a projection at a reference angle each Nz projections
Seq = Low_discrepency_squence(Np,Ns,p,Nz);
theta = 0:pi/1000:2*pi;
xcircle = cos(theta);
ycircle = sin(theta);
x = cos(Seq*pi/180);
y = sin(Seq*pi/180);
h = plot(xcircle, ycircle);
hold on;
h0 = plot(x, y, 'ro');
axis off;
axis square;
Computing file changes ...