hello.i have a column matrix of my needed data.i want to seperate each 2000 row and perform crqa on it and get the quatities for determinism and laminarity and also plot these two but i don't know how and i keep getting errors.please help me
L=floor(length(E1M2_1_1)/2000);
y=zeros(2000,L);
for i=1:(L-1)
y(:,i)=E1M2_1_1(2000i:2000i+2000);
s=y(:,i);
Y=crqa(s,2,1,0.05,[],[],[]);
det(i)=Y(:,2);
lam(i)=Y(:,6);
end
Learn methods and guidelines for using stereolithography (SLA) 3D printed molds in the injection molding process to lower costs and lead time. Discover how this hybrid manufacturing process enables on-demand mold fabrication to quickly produce small batches of thermoplastic parts. Download Now
Examine how the principles of DfAM upend many of the long-standing rules around manufacturability - allowing engineers and designers to place a part’s function at the center of their design considerations. Download Now
Metal 3D printing has rapidly emerged as a key technology in modern design and manufacturing, so it’s critical educational institutions include it in their curricula to avoid leaving students at a disadvantage as they enter the workforce. Download Now
This ebook covers tips for creating and managing workflows, security best practices and protection of intellectual property, Cloud vs. on-premise software solutions, CAD file management, compliance, and more. Download Now
RE: using crqa toolbox