Code covered by the MathWorks Limited License

Highlights from
Embedded Coder Robot NXT Demo

image thumbnail
from Embedded Coder Robot NXT Demo by Takashi Chikamasa
Offers an enjoyable Model-Based Design experience using Simulink models with Lego robots

load_logdata.m
%   Copyright 2010 The MathWorks, Inc.

data = dlmread('logging_data.csv', ',',1,0);
logging_data = [data(:,1)/1000, data(:,2), data(:,3), data(:,4)];
clear data;

Contact us