How to retrieve the file from txt to matlab, split it into numbers with 3 digits each and built a 0/1 matrix?
-
if i have this in the txt file 001003005 002006007008 how can I (1) retrieve the file from txt to matlab (2) split this into numbers with 3 digits each (3) built a 0/1 matrix from it using matlab so that the matrix will look like this [1 0 1 0 1 0 0 0; 0 1 0 0 0 1 1 1] meaning to say that 001 will give 1 in the first column(first row), 003 will give 1 in third column(first row), and 005 will give 1 in fifth column (first row) but the 2nd, 4th, 6th, 7th and 8th column (first row) will be 0. and same with the second row ...since the greatest number is 8. so we have 2 X 8 size of the matrix..
-
Answer:
Dear Nicholas, The script below will do what you asked, provided that the inputs are as described by you. However, it doesn't fully check that the format of data from the input file matches your description. Thus, you could have problems if the inputs consist of nonnumeric characters, or if the three-digit numbers are not positive. Also, the script does not verify that there are leading zeros on small numbers, so " 12" and "012" will be treated the same way, for example. By contrast, leaving out trailing zeros will not be treated the same way (for instance, "12 " will be understood as 12, whereas "120" is simply 120). I leave it to you to check that your data have the correct format and to handle situations that could occur if the format differs from your description. % Set the number of digits for each number to be read from the input file. num_digits = 3; filename_in = 'YANicholas.txt'; ifile_in = fopen(filename_in); sline_in = fgetl(ifile_in); mat01 = 0; iline = 1; while ischar(sline_in) % Forgive trailing spaces in the file. sline_in = deblank(sline_in); if mod(length(sline_in), num_digits) == 0 while length(sline_in) > 0 % Peel off one number at a time to designate the matrix column. % Note that num should be positive; otherwise MATLAB will give its % standard error message. num = str2num(sline_in(1 : num_digits)); sline_in = sline_in(num_digits + 1 : end); mat01(iline, num) = 1; end sline_in = fgetl(ifile_in); iline = iline + 1; else disp(['*** Error: Improper format on line ', num2str(iline), '. ***']) sline_in = []; end end % while fclose(ifile_in); if ~isempty(sline_in) disp('The 0/1 matrix was successfully built as "mat01"!') mat01 end
Nicholas at Yahoo! Answers Visit the source
Other answers
Dear Nicholas, The script below will do what you asked, provided that the inputs are as described by you. However, it doesn't fully check that the format of data from the input file matches your description. Thus, you could have problems if the inputs consist of nonnumeric characters, or if the three-digit numbers are not positive. Also, the script does not verify that there are leading zeros on small numbers, so " 12" and "012" will be treated the same way, for example. By contrast, leaving out trailing zeros will not be treated the same way (for instance, "12 " will be understood as 12, whereas "120" is simply 120). I leave it to you to check that your data have the correct format and to handle situations that could occur if the format differs from your description. % Set the number of digits for each number to be read from the input file. num_digits = 3; filename_in = 'YANicholas.txt'; ifile_in = fopen(filename_in); sline_in = fgetl(ifile_in); mat01 = 0; iline = 1; while ischar(sline_in) % Forgive trailing spaces in the file. sline_in = deblank(sline_in); if mod(length(sline_in), num_digits) == 0 while length(sline_in) > 0 % Peel off one number at a time to designate the matrix column. % Note that num should be positive; otherwise MATLAB will give its % standard error message. num = str2num(sline_in(1 : num_digits)); sline_in = sline_in(num_digits + 1 : end); mat01(iline, num) = 1; end sline_in = fgetl(ifile_in); iline = iline + 1; else disp(['*** Error: Improper format on line ', num2str(iline), '. ***']) sline_in = []; end end % while fclose(ifile_in); if ~isempty(sline_in) disp('The 0/1 matrix was successfully built as "mat01"!') mat01 end
wiseguy
Related Q & A:
- How to retrieve a JSON as an object in Android?Best solution by Stack Overflow
- How to retrieve a variable name given its value?Best solution by Stack Overflow
- How many grams of BaF2 will dissolve in 0.496 L of a 0.104 M NaF solution?Best solution by answers.yahoo.com
- How can I change to a profile 1.0 on MySpace?Best solution by Yahoo! Answers
- How to create a Database in FoxPro and how to retrieve and sort it out?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.