comparison +multiblock/gridVector2d.m @ 0:48b6fb693025

Initial commit.
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 17 Sep 2015 10:12:50 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:48b6fb693025
1 function [x,y] = gridVector2d(schms)
2 n = length(schms);
3 x = cell(n,1);
4 y = cell(n,1);
5
6 for i = 1:n
7 x{i} = schms{i}.x;
8 y{i} = schms{i}.y;
9 end
10 end