I have a .txt file that I need to turn into a vector
20 views (last 30 days)
Show older comments
My .txt file is just "2 4 3 4". I need to turn this into a vector but I dont know how.
I loaded my .txt file into the document by going Grades = load("Grades.txt"); then I tried to make that into a vector by doing CourseGrade = linspace("Grades") but it didnt work. It wants me to put real numbers in there.
Please help me out, thanks!
0 Comments
Answers (2)
Walter Roberson
on 6 Oct 2022
filename = 'Grades.txt';
%first create an example file
example_data = "2 4 3 4";
writelines(example_data, filename);
dbtype(filename)
%now do the work
Grades = load(filename)
%Grades is now a row vector because that is what was in the file.
%if you need it to be a column vector then transpose it
Grades = Grades.'
0 Comments
See Also
Categories
Find more on Text Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!