How stupid of me!!!
Aaargh!!! How frustrating.
Since the last meeting I have done the following:
To Do Over next two weeks:
I need to customize the datacursor, but have no idea how to go about it. I have looked at the datacursormode function, but there isn't a lot of detail in the documentation.
If you are joining a very large shapefile on an attribute field, it is much faster to join the dbfs and calculate new fields in Microsoft Access.
...although "works" is probably an exaggeration. It is more like: I have gotten rid of the obvious error messages and the prototype seems to be doing what it did before.
Setting up the structure of the array first IS the way to go about it.
setappdata(STVFig,'dataset.isosurf.M',[]);
setappdata(STVFig,'dataset.isosurf.O',[]);
setappdata(STVFig,'dataset.isopatch.M',[]);
setappdata(STVFig,'dataset.isopatch.O',[]);
setappdata(STVFig,'dataset.isopatch.XY',[]);
setappdata(STVFig,'dataset.isopatch.XZ',[]);
dataset.isosurf.M =[];
dataset.isosurf.O = [];
dataset.isopatch.M=[];
dataset.isopatch.O=[];
dataset.isopatch.XY=[];
dataset.isopatch.XZ = [];
setappdata(STVFig,'dataset',dataset);
clear dataset;
It turns out my old code is not as messy as I thought. There are lots of comments, and it is relatively logically structured. I have decided to just modify the old code.
setappdata(STVFig,'dataset.isosurf.M',[]);It doesn't like the fields (ie "isosurf" and "M"). It is quite happy if I just do this:
setappdata(STVFig, 'dataset',[]);
dataset.isosurf.M = [];
dataset.isosurf.M =1;but that doesn't seem to be working either.
dataset.isosurf.O = 2;
setappdata(STVFig,'dataset',dataset);
Well, not again exactly.
Today, I am going to figure out the new version of Matlab, and start setting up the User Interface.
Blog Purpose: To track my thesis progress.