User Kena - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:29:33Zhttp://stackoverflow.com/feeds/user/8027http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1792058#17920582Answer by Kena for Year end budget - what development software should be considered?Kena2009-11-24T18:41:51Z2009-11-24T18:41:51Z<p>For number crunching, MATLAB is a good tool to have in your tool set, if you do that sort of things (scientific computing, numerical analysis, matrix manipulations, statistical analysis...) and it's insanely expensive once you start adding toolboxes.</p>
<p>Mathematica is also very nice for equation solving and symbolic math. For the kind of scientific work I do, it's not a must but it's a good investment, in that it can save me hours of work instantaneously.</p>
http://stackoverflow.com/questions/1043433/how-to-auto-remove-trailing-whitespace-in-eclipse/1766298#17662981Answer by Kena for How to auto-remove trailing whitespace in Eclipse?Kena2009-11-19T20:29:57Z2009-11-19T20:29:57Z<p>You can map a key in Eclipse to manually remove trailing whitespaces in the whole file, but only on request instead of automatically at save. (Preference/Keys and then map a set of keys to File/Remove Trailing Whitespace) This can be useful if you want to sanitize all new files, but keep legacy code untouched.</p>
<p>Another strategy is to activate visual display of whitespace, so at least you'll know when you're adding some trailing whitespace. As far as I know, there's no way to display only trailing whitespace though, but I'll be glad to be proved wrong.</p>
http://stackoverflow.com/questions/1676763/remove-progress-bar-from-published-document-in-matlab0Remove progress bar from published document in MATLABKena2009-11-04T21:31:42Z2009-11-06T19:01:39Z
<p>I am using the publishing functionality of MATLAB to generate a quick report of some analysis I'm running. Since the analysis is quite time-consuming, I've added a progress bar to keep track of how long is remaining. The problem is that I'd prefer this progress bar not to appear in my report.</p>
<p>Is there a way to keep MATLAB from introducing some content in a published document. Or, alternatively, is there a way I can know I'm currently in publish mode, so I can skip the progress bar in those cases?</p>
<p>Edit:
There's a couple of solutions already, but I'd prefer something automatic that doesn't require an extra step in the workspace before publication. Any other tricks?</p>
http://stackoverflow.com/questions/1676763/remove-progress-bar-from-published-document-in-matlab/1688514#16885140Answer by Kena for Remove progress bar from published document in MATLABKena2009-11-06T15:59:20Z2009-11-06T16:04:36Z<p>Another slightly more generic option (inspired by Mike Katz' response), which works for any kind of content you don't want (or explicitly want) to include in your report.</p>
<p>in your module/function</p>
<pre><code>try
inPublishMode = evalin('base', 'inPublish');
catch
inPublishMode = false;
end
</code></pre>
<p>You can now set the inPublish variable from the workspace before running your test, and wrap your optional code in conditional statements.</p>
<pre><code>if inPublishMode
% do something
end
</code></pre>
<p>Still not perfectly satisfactory, but it's another tool in the bag.</p>
http://stackoverflow.com/questions/207092/image-processing-textbook3Image processing textbookKena2008-10-16T01:06:22Z2009-10-24T10:28:49Z
<p>Can you recommend a good textbook on image processing? A friend of mine asked for references, and that made me realize that my image processing library from my college days is probably very outdated.</p>
<p>I'm looking for something that is a good introductory book for someone with a decent programming and math background, but who's not an imaging expert.</p>
http://stackoverflow.com/questions/1559391/finding-matrix-through-optimisation/1574120#15741202Answer by Kena for finding matrix through optimisationKena2009-10-15T18:13:49Z2009-10-15T22:01:54Z<p>You don't specify a language, but here's how I would approach the problem in Matlab.</p>
<ul>
<li>v1 is a 3xn matrix, containing your input colors in vertical vectors</li>
<li>v2 is also a 3xn matrix containing your output colors</li>
</ul>
<p>You want to solve the system </p>
<pre><code>M*v1 = v2
M = v2*inv(v1)
</code></pre>
<p>However, v1 is not directly invertible, since it's not a square matrix. Matlab will solve this automatically with the mrdivide operation (M = v2/v1), where M is the best fit solution.</p>
<pre><code>eg:
>> v1 = rand(3,10);
>> M = rand(3,3);
>> v2 = M * v1;
>> v2/v1 - M
ans =
1.0e-15 *
0.4510 0.4441 -0.5551
0.2220 0.1388 -0.3331
0.4441 0.2220 -0.4441
>> (v2 + randn(size(v2))*0.1)/v1 - M
ans =
0.0598 -0.1961 0.0931
-0.1684 0.0509 0.1465
-0.0931 -0.0009 0.0213
</code></pre>
<p><a href="http://kybele.psych.cornell.edu/~edelman/Course/lightness/node23.html" rel="nofollow">This</a> gives a more language-agnostic solution on how to solve the problem.</p>
http://stackoverflow.com/questions/1544861/which-code-is-more-readable/1545206#15452060Answer by Kena for Which code is more readable?Kena2009-10-09T17:55:47Z2009-10-09T17:55:47Z<p>Short-circuiting of AND behavior is not standard in all languages, so I tend to be wary of using it implicitly if that's essential to my code. </p>
<p>I don't trust myself to see the short-circuit immediately after I've switched languages for the fifth time in the day. </p>
<p>So if Boo() should never be called when Foo() returns false, I'd go with version #2, if only as a defensive programming technique.</p>
http://stackoverflow.com/questions/1544269/best-language-for-introductory-higher-level-programming-course/1544412#15444124Answer by Kena for Best language for introductory "higher level" programming course.Kena2009-10-09T15:08:41Z2009-10-09T15:13:43Z<p>I find that non-CS-majors who dabble into programming generally gravitate towards scripting languages (makes it easy to automate tasks) or specialized scientific languages (eg: MATLAB, statistical analysis languages, etc...) </p>
<p>If you want a general-purpose language, I'd tend to go with Python, which also has a simple syntax, is easily available on many platforms, and can work decently both as a general-purpose number-crunching tool AND a scripting tool.</p>
<p>Otherwise, for scientists and engineers, you can do worse than teach them MATLAB (which is what my undergrad school did with mechanical engineering majors). It's not a very elegant language, but it shows the basic concepts, and that's what they're most likely to use throughout their career.</p>
<p>These might not be the "best" languages to learn, but IMHO, the best language is the one they'll keep using to solve their problems once the class is over, and these two fit the bill.</p>
http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab1Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T17:33:44Z2009-10-08T20:30:06Z
<p>I'm trying to load the following ascii file into MATLAB using load() </p>
<pre><code>% some comment
1 0xc661
2 0xd661
3 0xe661
</code></pre>
<p>(This is actually a simplified file. The actual file I'm trying to load contains an undefined number of columns and an undefined number of comment lines at the beginning, which is why the load function was attractive)</p>
<p>For some strange reason, I obtain the following: </p>
<pre><code>K>> data = load('testMixed.txt')
data =
1 50785
2 58977
3 58977
</code></pre>
<p>I've observed that the problem occurs anytime there's a "d" in the hexadecimal number.</p>
<p>Direct hex2dec conversion works properly:</p>
<pre><code>K>> hex2dec('d661')
ans =
54881
</code></pre>
<p>importdata seems to have the same conversion issue, and so does the ImportWizard:</p>
<pre><code>K>> importdata('testMixed.txt')
ans =
1 50785
2 58977
3 58977
</code></pre>
<p>Is that a bug, am I using the load function in some prohibited way, or is there something obvious I'm overlooking? </p>
<p>Are there workarounds around the problem, save from reimplementing the file parsing on my own?</p>
<p>Edited my input file to better reflect my actual file format. I had a bit oversimplified in my original question.</p>
http://stackoverflow.com/questions/192369/books-for-learning-the-r-language15Books for learning the R languageKena2008-10-10T17:27:55Z2009-10-07T06:24:37Z
<p>I'm looking for resources to start exploring the R language (as was recommended in my question on <a href="http://stackoverflow.com/questions/189237/statistical-tools-for-programmers">Statistical Tools</a>). I know there are some suggestions for basic online tutorials in <a href="http://stackoverflow.com/questions/72860/understandable-documentation-about-r">this thread</a>, but I'd like something a little bit more extensive.</p>
<p>Any suggestions for good textbook like references, either online and in dead-tree form?</p>
http://stackoverflow.com/questions/1521673/is-there-a-term-that-describes-an-application-that-gets-smarter-the-more-data-it/1521691#15216912Answer by Kena for Is there a term that describes an application that gets smarter the more data it has?Kena2009-10-05T18:34:47Z2009-10-05T18:34:47Z<p>The domain of this kind of applications is "machine-learning". But I'm not aware of a matching adjective.</p>
http://stackoverflow.com/questions/157685/in-matlab-how-do-i-change-the-background-color-of-a-subplot1In Matlab, how do I change the background color of a subplot?Kena2008-10-01T13:51:11Z2009-09-22T05:53:45Z
<p>I'm trying to change the background color of a single subplot in a Matlab figure.</p>
<p>It's clearly feasible since the UI allows it, but I cannot find the function to automate it.</p>
<p>I've looked into whitebg, but it changes the color scheme of the whole figure, not just the current subplot. </p>
<p>(I'm using Matlab 6.1 by the way)</p>
http://stackoverflow.com/questions/1369933/virtual-desktop-environment-for-development/1369978#13699780Answer by Kena for Virtual desktop environment for developmentKena2009-09-02T20:39:25Z2009-09-02T20:39:25Z<p>If you go that route, make sure you bench the system aggressively before any serious commitment. </p>
<p>My experience of remote desktops is that it's ok for occasional use, but seldom sufficient for intensive computations and compilation typical of development work, especially at crunch time when everyone needs resources at the same time.</p>
http://stackoverflow.com/questions/1335581/how-to-give-best-chance-of-success-to-an-ocr-software/1335628#13356280Answer by Kena for How to give best chance of success to an OCR software?Kena2009-08-26T15:36:09Z2009-08-26T15:56:19Z<p>For distinguishing between 0 and O, one simple solution is to choose a font that distinguishes between both (eg: 0 has a dash or dot in its middle). Would that be acceptable in your application?</p>
<p>Another solution is to apply a dictionary-based step after the character-by-character analysis of the text - feeding the recognized text into some form of spell-checker or validator to differentiate between difficult characters. </p>
<p>For instance, a round symbol followed by other numbers is most likely to be a zero, while the same symbol followed by letters is most likely to be a capital o. It's a trivial example, but it shows how context is necessary to make a more reliable OCR system.</p>
http://stackoverflow.com/questions/1002768/how-can-i-copy-all-my-disorganized-files-into-a-single-directory-on-linux/1002792#10027921Answer by Kena for How can I copy all my disorganized files into a single directory? (on linux)Kena2009-06-16T17:09:37Z2009-06-16T17:09:37Z<p>I'd tend to do this in a simple script rather than try to fit in in a single command line.</p>
<p>For instance, in python, it would be relatively trivial to do a walk() through the directory, copying each mp3 file found to a different directory with an automatically incremented number. </p>
<p>If you want to get fancier, you could have a dictionary of existing file names, and simply append a number to the duplicates. (the index of the dictionary being the file name, and the value being the number of files found so far, which would become your suffix)</p>
http://stackoverflow.com/questions/998599/point-releases-as-general-releases/998635#9986350Answer by Kena for Point releases as general releasesKena2009-06-15T22:00:30Z2009-06-15T22:00:30Z<p>In many organizations (OSS or other), the first digit of a version corresponds to a complete new generation of products, usually tied to a major reorganization of the code base or even a complete rewrite. </p>
<p>Releases that bring significant change, but are still built upon the same architecture or internal framework would see their second digit change. One usually adds a third digit or a release number for minor maintenance releases.</p>
<p>Without explicit examples, I'd guess that is the kind of numbering scheme you're seeing.</p>
http://stackoverflow.com/questions/987283/how-do-you-draw-different-surfaces-with-the-same-color-scale-in-matlab1How do you draw different surfaces with the same color scale in MATLAB?Kena2009-06-12T15:25:53Z2009-06-12T16:35:31Z
<p>I'm trying to represent several surface plots* for which the scale differs a bit. Each surface plot is drawn in a separate subplot and/or figure.</p>
<p>Right now, I'm using the default color mapping, which automatically scales the whole range of the color map to my figure, i.e. the maximum of my surface is always red (in 'jet' color mode) regardless of the magnitude of this maximum.</p>
<p>I'd like the colormap to be consistent between the figures instead of spread between the min and max of each individual graph. That way, readers could appreciate the difference in scale of the surfaces just by looking at the color map. </p>
<p>Any idea on how to do this?</p>
<p><hr /></p>
<p>*<em>Actually, in case it makes a difference, I'm plotting results of a surface fitting operation using the plot command as follows:</em></p>
<pre><code> [myfit, gof] = fit( ... );
plot(fit)
</code></pre>
http://stackoverflow.com/questions/977015/how-do-you-give-back-to-the-development-community/977288#9772881Answer by Kena for How do you give back to the development community?Kena2009-06-10T18:10:40Z2009-06-10T18:10:40Z<p>I frequently give conferences in local high schools as part of a program that exposes kids to various kinds of real-life professional jobs (with the explicit goal of getting those kids to stay in school). </p>
<p>It's extremely rewarding, not too time-consuming, and if only one kid gets to finish high school because of me, I'll have done my job.</p>
http://stackoverflow.com/questions/977165/does-it-make-sense-to-have-a-b-a-in-business-and-then-go-for-an-msc-in-computer/977254#9772543Answer by Kena for Does it make sense to have a B.A. in Business and then go for an MSc. in Computer Science?Kena2009-06-10T18:05:01Z2009-06-10T18:05:01Z<p>In my experience, the M.S. is not simply a harder substitute for an undergraduate degree in some software related major. It builds on your existing knowledge of the craft to make you a specialist in some area of computer science.</p>
<p>Without that existing knowledge (which could come from experience, although you'd probably have to make a strong case to the university where you're applying), I doubt you'd be successful in grad school. And if you have no interest in a more research-oriented career, I'm not sure how useful that degree would be.</p>
http://stackoverflow.com/questions/951027/what-are-the-five-priorities-for-software-development/951191#9511914Answer by Kena for What are the five priorities for software development?Kena2009-06-04T15:12:36Z2009-06-04T15:12:36Z<p>There are probably dozens of versions of such a n-branch diagram.</p>
<p>I've seen it as:</p>
<ul>
<li>Bug Free</li>
<li>On Time</li>
<li>Feature Complete</li>
<li>On Budget</li>
<li><strong>With an happy team</strong> </li>
</ul>
<p>The wording and emphasis is mine, but basically, the author added the notion that yes, pushing your team to do crazy overtime is part of the things you can sacrifice, but like quality or budget, you end up paying for it in some way.</p>
http://stackoverflow.com/questions/920712/php-c-c-how-does-your-initial-comment-block-look-in-your-programs/920737#9207370Answer by Kena for PHP/C/C++ - How does your initial comment block look in your programs?Kena2009-05-28T13:07:32Z2009-05-28T13:07:32Z<p>Company boilerplate copyright + file author/owner and a small purpose section when relevant (eg: when the file contains a collection of small related classes with headers of their own)</p>
http://stackoverflow.com/questions/906924/how-do-you-enforce-coding-standards-in-your-team/906963#9069633Answer by Kena for How do you enforce coding standards in your team?Kena2009-05-25T14:35:02Z2009-05-25T14:35:02Z<p>Systematic code reviews + a good dose of goodwill (and a standard that's been agreed upon by the developers)</p>
http://stackoverflow.com/questions/30376/getting-organised-the-todo-list/884993#8849930Answer by Kena for Getting organised; The TODO list.Kena2009-05-19T20:59:25Z2009-05-19T20:59:25Z<p>MonkeyGTD, with a few personal tweaks. I like having bins outside of my main TODO for "things that are being reviewed" and "things for which I'm waiting for someone else", i.e. things that need my attention, but for which I can't DO something right now. </p>
<p>It's also nice to be able to sort by project or by context (eg: make all phone calls at once)</p>
http://stackoverflow.com/questions/825531/best-programming-related-books-that-are-technology-agnostic/825537#8255378Answer by Kena for Best programming related books that are technology agnosticKena2009-05-05T15:49:24Z2009-05-05T15:49:24Z<p>The <a href="http://rads.stackoverflow.com/amzn/click/020161622X" rel="nofollow">Pragmatic Programmer,</a> comes to mind.</p>
http://stackoverflow.com/questions/778611/how-do-you-avoid-redundancy-in-documentation-comments/778663#7786630Answer by Kena for How do you avoid redundancy in documentation comments?Kena2009-04-22T18:56:57Z2009-04-22T18:56:57Z<p>I tend to be very suspicious of tools that force you to add comments in very arbitrary places. </p>
<p>Don't get me wrong, I'm a strong advocate of comments. But comments like those in your example are pure "noise": they don't add anything useful, and any meaningful information, if any, is hidden behind the fluff. </p>
<p>If comments could be generated by an automatic tool... then humans have no business writing them in the first place. If that's mandatory for some other reason (generation of external documentation for instance), you should have some form of automated script to generate those, and place the results in an unobtrusive location.</p>
<p>Of course, there's lots of meaningful things you could say about this function's interface. What are the bounds on the parameters, for instance. </p>
http://stackoverflow.com/questions/366453/best-practices-for-debugging/711673#7116730Answer by Kena for Best practices for debuggingKena2009-04-02T21:20:29Z2009-04-02T21:20:29Z<p>Something that helps, especially when you're new to debugging, is to keep some kind of debugging journal, with solutions to problems you've solved in the past. Most bugs follow relatively common patterns (for instance, apparently random problems in non-threaded applications are usually due to undefined variables, or similar use of uninitialized memory) and by keeping track of those patterns, you'll get much better at nailing in on future problems.</p>
<p>After a while, you just develop the necessary intuition (and then your journal becomes a very fun memory of all the nasty enemies you've conquered)</p>
http://stackoverflow.com/questions/265719/how-do-you-manage-your-task-list-backlog-wiki-based-tools-to-suggest2How do you manage your task-list/backlog? Wiki-based tools to suggest?Kena2008-11-05T16:30:19Z2009-03-09T22:06:01Z
<p>I'm looking for a low-key tool to handle a simple ranked task list (aka backlog in the agile lingo). </p>
<p>This will be used by several users, and will most likely change frequently. We already have a bug tracking system, but it's a bit too complex and heavyweight for the kind of casual, day-to-day planning we'll be doing. Really, what we need is an electronic version of a paper-based flip-chart.</p>
<p>We're already using a Wiki (MoinMoin-based) for our general project documentation, so this seems like a natural medium for managing our task list as well. However, I'd like something a bit more user-friendly than just a text-based list. Ideally, the tool would support checking off tasks, reordering, and setting responsible persons and due dates. </p>
<p>One of my team-mates suggested the Outlook tasklist, but I'm under linux so it's quite cumbersome for me. Can you suggest something more convenient?</p>
http://stackoverflow.com/questions/607451/next-step-for-a-self-taught-developer/607489#6074891Answer by Kena for Next Step for a Self-Taught Developer?Kena2009-03-03T18:07:14Z2009-03-03T18:07:14Z<p>I don't know what you're working on, but in most industries, someone with cross-competencies in both a specific domain AND computer science is a good asset. </p>
<p>Could you find a way to develop a side-project that's related to your main work? Is there any tool in your current work that doesn't work the way you want? Is there some unmet software need? It could be as simple as managing the CMS for your business, then finding a way to add-in a little plug-in that does X for your customers, etc...</p>
http://stackoverflow.com/questions/602708/handling-paper-documentation/602824#6028242Answer by Kena for Handling paper documentationKena2009-03-02T15:50:57Z2009-03-02T15:50:57Z<p>I use one of three options:</p>
<ul>
<li>Keep everything in my lab notebooks, which I archive myself, for low-level stuff</li>
<li>Scan the paper document, and add to source control in pdf. It's ugly, but if someone needs it, it's there</li>
<li>Transcribe the equations, results, etc... in a clean format (usually Latex) for future reference, and again, add to source control. Official paper copy gets signed (I work in a highly regulated domain) and filed in a binder.</li>
</ul>
http://stackoverflow.com/questions/595940/seemingly-completely-random-python-syntax-errors/595951#59595113Answer by Kena for Seemingly completely random Python syntax errorsKena2009-02-27T18:18:19Z2009-02-27T18:18:19Z<p>Unbalanced parentheses on line 4.</p>
<p>You're missing a closing )</p>
http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered/1772777#1772777Comment by Kena on Year end budget - what development software should be considered?Kena2009-11-25T16:46:10Z2009-11-25T16:46:10Z+1 for Photoshop. And I'd add Illustrator too. http://stackoverflow.com/questions/1676763/remove-progress-bar-from-published-document-in-matlab/1687974#1687974Comment by Kena on Remove progress bar from published document in MATLABKena2009-11-06T15:53:55Z2009-11-06T15:53:55ZWorks if I set 'Visible' to off too, which is not perfect, but acceptable
http://stackoverflow.com/questions/1676763/remove-progress-bar-from-published-document-in-matlab/1687974#1687974Comment by Kena on Remove progress bar from published document in MATLABKena2009-11-06T15:43:00Z2009-11-06T15:43:00ZSounds nice, but doesn't seem to work for me. The waitbar still appears... Will investigate
http://stackoverflow.com/questions/1676763/remove-progress-bar-from-published-document-in-matlab/1677534#1677534Comment by Kena on Remove progress bar from published document in MATLABKena2009-11-05T14:36:19Z2009-11-05T14:36:19ZI guess that would work, but I'd prefer to avoid the extra step. I'll keep looking for a more elegant solution, but thanks!http://stackoverflow.com/questions/1675798/how-do-i-generate-the-following-matrix-and-vector-from-the-given-input-data-in-ma/1675840#1675840Comment by Kena on How do I generate the following matrix and vector from the given input data in MATLAB?Kena2009-11-04T19:32:31Z2009-11-04T19:32:31ZNice. I would have used something based on circshift, but this is much more elegant
http://stackoverflow.com/questions/1675811/how-do-i-plant-a-seed-rather-than-try-to-win-an-argumentComment by Kena on How do I plant a seed rather than try to win an argument?Kena2009-11-04T18:45:20Z2009-11-04T18:45:20ZThis should be community-wiki
http://stackoverflow.com/questions/1623321/matlab-whats-y-imaxas-2Comment by Kena on MATLAB: What's [Y,I]=max(AS,[],2);?Kena2009-10-27T21:14:54Z2009-10-27T21:14:54ZYou might have to learn by the seat of your pants - we all do from time to time - but I strongly suggest you minimally read the reference manual for the functions you're using. Just type 'help myfunction', and you'll get a thirty-second primer on your function.http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlabComment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-09T18:30:56Z2009-10-09T18:30:56ZHow strange. In R2009a and R2009b under Linux, I get correct conversion for almost all hex numbers. Seems like a "partially but not quite implemented and certainly not tested" feature. But MATLAB support confirms that high-level parsing of hex numbers is unsupported, sadly. Too bad the documentation was not very explicit in that respect.http://stackoverflow.com/questions/1544269/best-language-for-introductory-higher-level-programming-courseComment by Kena on Best language for introductory "higher level" programming course.Kena2009-10-09T18:26:58Z2009-10-09T18:26:58ZWho is your audience? Would it be a mandatory class, or an elective? http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab/1539388#1539388Comment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T20:14:09Z2009-10-08T20:14:09ZCan't explain the downvote either, but I've upvoted you to compensate for that, even though it doesn't solve my problem exactly. Thanks for the hard work.http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlabComment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T18:55:31Z2009-10-08T18:55:31ZI have integers and hexadecimal, mixedhttp://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab/1539388#1539388Comment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T18:07:15Z2009-10-08T18:07:15ZWhat if the number of comment lines and the number of columns is not predetermined?http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab/1539388#1539388Comment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T18:02:21Z2009-10-08T18:02:21ZI'm trying to avoid explicitly defining the format, as my files can have a varying number of columns. Of course, if that's my only option, I'll do it. But I find it strange that load fails like that.http://stackoverflow.com/questions/1539343/problem-bug-loading-hexadecimal-data-into-matlab/1539410#1539410Comment by Kena on Problem (bug?) loading hexadecimal data into MATLABKena2009-10-08T17:58:21Z2009-10-08T17:58:21ZThis works for files containing only hex data, but not mixed data (see edited file input... I had over simplified in my first example)http://stackoverflow.com/questions/1521673/is-there-a-term-that-describes-an-application-that-gets-smarter-the-more-data-it/1521702#1521702Comment by Kena on Is there a term that describes an application that gets smarter the more data it has?Kena2009-10-05T18:54:05Z2009-10-05T18:54:05ZBut, AFAIK, an expert system does not, by definition, involve learning.