Tagged Questions
9
votes
2answers
63 views
Leading zero in Matlab's scientific notation
In Matlab, when printing using e such as fprintf('%10.5e\n', pi/100) one will get the result to be 3.14159e-02. However, what if I want the number to have a leading zero such as 0.314159e-1? How can I ...
0
votes
1answer
27 views
Saving file in specific drive
I am manipulating data into a matrix (X), I am using this code:
fid=fopen('Data','w+');
fprintf(fid,'%6.3f %6.3f\n,X);
fclose(fid);
to create a file named 'Data', I want to save that file in a ...
0
votes
1answer
31 views
Generating txt file in complex format from Matlab datas
I'm relatively new to Matlab and currently using it to calculate pressure cards for rapid dynamic applications on RADIOSS.
The function is done and can calculate Time-Pressure points.
For the moment I ...
0
votes
1answer
19 views
How to access to numbers from *.txt file in matlab?
I have a data.txt file like:
123 124 125 126
I want to compare these number against num
My code is like this
data= textread('data.txt','%d');
num = 125;
if num == data
b = 1;
...
1
vote
1answer
32 views
textscan in Matlab when delimiter is in a field and what to ignore " character
Using textscan I'm trying to read a file that has comma separated data in the following format:
"1234","24.0","Hello, my name is Joe"
"4567","25,0","Hi, I'm Jane"
The non-delimiter comma in the ...
1
vote
1answer
37 views
Read a string with spaces into MATLAB from a file
In my text file I have several lines of input in the following format
Arun 3 4.0 Text
where Text can be a string of several words separated by spaces.
I want to read this into MATLAB such that I ...
2
votes
1answer
56 views
Matlab doesn't read files with tilde (~) instead of full home path
I've noticed a strange behavior of Matlab when accessing files. Say I have a path to a file like this:
path = '~/data/file'
If I run exist(path), the result is 2, i.e. the file exists. If I run
...
1
vote
2answers
40 views
Matlab - read a specific format line
I have a file which contains data in the following format 0,"20 300 40 12".
How can I read this data with sscanf function such that I store 0 in a separate variable and 20 300 40 12 in another ...
0
votes
1answer
29 views
Inputting Excel file into Matlab
I wanted to create a matrix with relevant information from an excel file in Matlab, however, when I read in the excel using:
data = xlsread(FILENAME);
My values for the "dates" are converted to ...
0
votes
1answer
54 views
Matlab: read and calculate percentage of occurrence values from text files
I have a set of .txt files with name:
table.iterations.txt where iterations = 1:10000 (so it is table.01.txt, table.02.txt, table.1001.txt etc, each file size is lower than 2kb).
Each txt file ...
3
votes
3answers
89 views
Read multiple images on a folder in Matlab
I have a problem reading multiple images in Matlab from a folder. I want to read with their original name (with the command imread because are multiband). The names of the images are like '2001_01', ...
2
votes
1answer
48 views
Form a Matrix From a Large Text File Quickly
Hi I am struggling with reading data from a file quickly enough. ( Currently left for 4hrs, then crashed) must be a simpler way.
The text file looks similar like this:
From To
1 5
3 2
2 1
...
-1
votes
2answers
67 views
Count the number of lines in text files in a folder and sum the number of the total lines using MATLAB [closed]
I would like to read some text files which are in one folder in MATLAB, count the number of lines in each file and finally sum up these numbers. I would be thankful if somebody guide me how to do it ...
0
votes
1answer
73 views
Adding noise to speech signal
I'm attempting to add noise to a speech signal (.wav file) in matlab using the following method:
load handel.mat;
hfile= 'noisy.wav';
y = wavread('daveno.wav');
y = y + randn(size(y)) * (1/100);
...
0
votes
2answers
53 views
Use of fscanf with comma separated values in Matlab
Over serial, I am getting values like
23,2004,5000
24,5005,5060
25,6789,8907
How do I separate these into three columns?
For one column, e.g:
25
24
26
I can just do
clc;clear all;close ...
0
votes
1answer
38 views
Convert data file to char array
I have a file(res.txt) that looks like this:
a
na
na
a
a
a
na
I need to read this into a matrix and import into workspace. using textscan makes it a cell array. hence, a(2)=n not na . How do I ...
0
votes
2answers
53 views
Read file with strings and integers in matlab
I have to read a file in Matlab that looks like this:
D:\Classified\positive-videos\vid.avi 163 3 14 32 54 79 105 130 155 202 216 224 238 250 262 288 288 322 357 369 381 438 457 478 499 525 551
...
0
votes
1answer
69 views
Fscanf file read in matlab for mixed numeric and non-numeric data
I try to read data from file but I have no idea how to use fscanf normally.
Have file like this
surname1 A.A.(16 char everytime) 23323 3232 232322 ....
surname2 A.A. 23322 3232 232322 ....
surname3 ...
0
votes
1answer
31 views
Matlab File I/O concatenation
I have this
fprintf(emailFile, '%s' , fname);
fprintf(emailFile, '%s' , lname);
fprintf(emailFile, '%i' , id);
fprintf(emailFile, '%s\n' , dept);
I need to make it so that the email file shows ...
0
votes
0answers
25 views
MatLab, File I/O trouble
Im suppose to go into the while loop and repeat the reading and writing process and in this loop I can do the other requirements like keep track of the ages and store them in a vector. But I dont ...
2
votes
1answer
32 views
How do you calculate the path by removing the current file name from the full path, in Matlab?
How do you calculate the path by removing the current file name from the full path? I have this so far:
fullPath = mfilename('fullpath')
curMfile = mfilename();
path =
But I don't know what to put ...
0
votes
2answers
115 views
comparing multiple images
I have written a matlab function that enables me to get the name of image from user and compare it with the existing images and display if it matches or not..
function matchin
handles = ...
0
votes
1answer
93 views
MATLAB: Reading data from a text file with string in last line and “merged” columns
I have some simulation results stored in a large text file formatted similarly to the following example:
******* Information
More Information
Header 1 Header 2 Header 3
[Unit] [Unit] ...
0
votes
2answers
38 views
Reading file in MATLAB having non CSV Data
Through a serial port I am getting data for X, Y and Z in a text file as follows:
X195Y207Z247
X195Y209Z248
X193Y207Z248
X195Y207Z248
X194Y207Z235
X193Y209Z248
X193Y220Z247
X193Y217Z237
X193Y220Z248
...
0
votes
3answers
163 views
file handling in matlab
I have a large text file almost 150 MB to 500 MB and this file contains 20 lacs lines...
Contents of the file goes like this....
USDINR12AUGFUT 1 1343791803 579782 2012-08-01 09:00:03 ...
0
votes
1answer
143 views
writing audio signal to file using 16 bit per sample (LSB,MSB) in Matlab
could you help me with generation audio signal with such a parameters:
sample rate = 8000 Hz,
mono,
16-bits per sample.
I need write samples to file without any header, in little-endian ...
6
votes
1answer
114 views
What are the limitations of the Matlab fileread command in -nodesktop mode?
Assuming a text file with 7718 characters (e.g. the contents cut and pasted from here)
The command fileread('myfile.txt') fails when I launch matlab with matlab -nodesktop but works in desktop mode.
...
0
votes
1answer
107 views
Iteratively saving variables to files using Matlab save function
I am saving the contents of an array to different files as follows:
for i=1:10
name = [myfilename num2str(i)]
savevar = myvariable(i)
filename = mat2str([name '.dat'])
save(filename, savevar, ...
1
vote
1answer
62 views
Analyzing .txt file consisting of tweets line by line
how would I use multiple fgetl operations to have Matlab read my 30 line of text .txt file. I cannot just put all the lines into one variable because I need to analyze information within the file ...
0
votes
0answers
46 views
Is there a simple way to treat a memmapfile object as a file handle?
I need to be able to read and parse many simple but reasonably large text files. The majority of each file is simply a matrix of values, written in human-readable text, with columns separated by ...
0
votes
2answers
98 views
How can I read lines with different number of data entries from text file into array in Matlab?
I have a text file containing message and timestamps:
{193220,message,ucontroller9,controller1,lowalarm,success},
{193220,message,controller1,changer,{change,down},success},
...
1
vote
1answer
67 views
human readable data file
Apart from csv file, which other options do I have to read and write human readable data files in matlab? The data consists of unique parameter value pairs (not necessarily hierarchical - see below).
...
2
votes
1answer
107 views
read function from text file in matlab
I'm going to read some function from a Unicode text file in matlab and calculate there answer with my own variables. first i use fopen to read the text file, then what should i do to convert each line ...
0
votes
3answers
82 views
How do I replace a single value within a .m matlab file?
I have a .m file that contains a struct with some matrices:
%mymatfile.m
function [mymatrix,anothermatrix] = mymatfile;
mymatrix = [
1 2 0.0010 0.0010 0.0000 2.0000 2.0000 2.0000 1 0 ...
0
votes
1answer
102 views
Reading a '.txt' data file in columns to a matrix in MATLAB
I have a file like
86999490 88641807@N00 newyork truck city night light red road street springstreet
86999495 34675390@N00 sky
86999496 97245056@N00 scarborough
86999503 ...
1
vote
1answer
811 views
Matlab - how to read a file with a large number of integer columns using textscan
I have a file which contains data in the following format:
filename.jpg,132,234,234,345,4555,23333,344,...,333
I have put ... to mark the fact that I have a long sequence of integers. On each line ...
1
vote
1answer
349 views
How do you use xlsread with MATLAB and OS X?
When trying to call xlsread, I get the warning:
Warning: Could not start Excel
server for import, 'basic' mode
will be used. Refer to HELP
XLSREAD for more information.
The helpfile ...
9
votes
2answers
240 views
read text files containing binary data as a single matrix in matlab
I have a text file which contains binary data in the following manner:
00000000000000000000000000000000001011111111111111111111111111111111111111111111111111111111110000000000000000000000000000000
...
0
votes
2answers
85 views
fscanf outputting blob of text instead of an array
So I've got a bunch of data that requires parsing. It's in the following format:
ATOM 1 N VAL A 1 5.287 16.725 4.830 1.00 77.31 N
ATOM 2 CA VAL A 1 ...
0
votes
3answers
331 views
Writing multiple output file matlab
I want to write output of code periodically in different files in some specific folder.
Code I am using is as follows:
for i=1:m
% some other things
if (mod(i,1000)==0)
...
2
votes
1answer
567 views
fprintf is not writing the file as it displays - matlab
the code below displays at the matlab command panel perfectly well
fprintf('%f\n%f\n%f\n',MDR,TER,FAR);
each variable is displayed as new line
but when i try this way and check the newly made text ...
0
votes
1answer
98 views
How to conver this text file to proper cell array - Matlab
Alright this is the text file
{'samsung','n150','jp0xtr','n570','2gb','320gb','10','w7str'};
...
0
votes
2answers
67 views
How to read a matrix from a text in Matlab
I recently ran into this the other day, I'm not that good of a programmer, and the teacher asked us to make a program that reads a square matrix from a txt. and then use the information to solve it. ...
0
votes
1answer
1k views
How to read lines into cell array at the matlab
I want to read a regular text file into cell array at the matlab. How can i do that ?
I don't want any formatting. Reading as literals.
Thank you.
It will be row based array like 100x1
example of ...
4
votes
4answers
700 views
Is there a way in Matlab to determine the number of lines in a file without looping through each line?
Obviously one could loop through a file using fgetl or similar function and increment a counter, but is there a way to determine the number of lines in a file without doing such a loop?
1
vote
3answers
301 views
Using dir function in Matlab - how to get rid of `.` and `..`
I am using dir function to list the content of a folder but it gives . and .. for first two folder. Is there any way to get rod of this silly process.
Can I use regular expression in dir function ? ...
1
vote
4answers
1k views
Read numbers(integers) from a file and store it a 2-D array
I have a file(both .dat and .txt format) which contains numbers(integers) in rows and columns form. I need to read
numbers(integers) from this file. That data is to be stored in a 2D-array. This array ...
1
vote
2answers
70 views
Writing a list of variables and their values from Matlab to text
I'm trying to write something like the following to file.
keys = {'one','two','three'}
values = [1 2 3]
This is my code so far:
function save_recording_results(keys,values)
keys=keys.';
...
1
vote
2answers
478 views
How to read matrix from text file in matlab?
I have a text file in the same folder as my matlab code called matlab.in, its contents are
training_set = [1 2 3; 4 5 6]
How do I read this matrix into a variable called training_set?
0
votes
1answer
357 views
textread not working with .txt file in MATLAB
In MATLAB: before I try to apply textread to the .txt file, I have already split up the file from a large text file to smaller text files using a script which is successful in its execution and uses ...
