Answered
Readtable to put text into columns from .CSV file
Not at all clear why you would want a quoted string where the quotes are over the whole line instead of fields, but that's a fai...

4 years ago | 1

Answered
Is there a way to make a categorical array of colors?
See above for rants/railings and a little background from my perspective...more directly to the Q? here -- You can't create a c...

4 years ago | 1

| accepted

Answered
I have data every 14, 15 or 16 minutes and met data every 1 minutes. I want to average met data according to the 14, 15 and 16 minutes
load Sample1 load Sample2 ttM=table2timetable(Mettimedata); ACSMtimedata.TimeACSM=datetime(ACSMtimedata.TimeACSM,'InputFormat...

4 years ago | 1

| accepted

Answered
Read run-length encoding data from a table
Not sure what the next step(s) are, but to convert each row use something like data=reshape(str2double(split(tT.EncodedPixels(i...

4 years ago | 0

Answered
can nay one help to understand this code
In a reasonable amount of time, undobutedly not other than the obvious that the overall function appears to solve the network st...

4 years ago | 0

Answered
Exciting latex file using Matlab giving errors
The system function uses a shell program and spawns a new process in which the command is executed; hence, the environment seen ...

4 years ago | 0

Answered
Legality of reading Matlab files
That would depend on the ownership and provenance of of the .mat files themselves; as long as you don't use pirated MATHWORKS co...

4 years ago | 1

Answered
How to plot only specific contours in matlab?
Did you not read contourf input syntax descriptions? The third option down says contourf(___,levels) specifies the contour lin...

4 years ago | 1

| accepted

Answered
Grouping and comparing Data
One way amongst many -- BINS=categorical([-1:1],[-1:1],["Low","Med","High"]); % the end categories YrTotal=sum(sign(M_Avg...

4 years ago | 0

Answered
Randomly assort variables into 3xN matrix
V=[v1;v2;v3]; % a vector of the three possible values (set elsewhere somehow; not explained) ix=randperm(3); % the ra...

4 years ago | 1

Answered
Extract values from a data table and create a new table
What did you try? Have you looked at the "Getting Started" section on array indexing/addressing; specifically logical indexing?...

4 years ago | 0

Answered
Using Contourf to Create Contour Plot with XYZ Data
You don't have enough data -- to use contourf, you must have size(Z) = x by y points -- you've got >> whos x y z Name ...

4 years ago | 0

| accepted

Answered
Convert to fixed values and replace N/A with zero?
As @Rik, I have no klew what fixed values are to be, but the other Q? is trivial -- Brute force... data=readtable('micro.txt...

4 years ago | 0

Answered
Creating text file by combining/editing header and data
N1=34; % file1 header length -- don't bury magic constants inside code N2=64; ...

4 years ago | 1

| accepted

Answered
Reading 8x8 matrices from file into MATLAB
Try something like fid=fopen('yourfile.txt','r'); i=0; C=[]; while ~feof(fid) i=i+1; C{i}=reshape(cell2mat(textscan(fi...

4 years ago | 0

Answered
Read a matrix between elements
I'd go at it something like N=1000; D=3000; for i1=1:D:size(x,1) % starting index each subsection i2=i1+N-1...

4 years ago | 0

| accepted

Answered
How do I split this data into different column and write it back in a text file with an extention .bdf?
data=readlines('mat.fem'); M=split(data(startsWith(data,'MAT1'),:),','); M(:,4)=num2str(rand(size(M,1),1)); modifies MAT1 as ...

4 years ago | 0

| accepted

Answered
Does @(x) matlab function exist in C language ?
Standard C does not include what is generically called a "lambda" outside MATLAB. GCC has an extension but I've never used it. ...

4 years ago | 1

| accepted

Answered
How do I split this data into different column and write it back in a text file with an extention .bdf?
So, what is this -- the content of some file, an array of text, a cell array... ?? What are we looking at here? If it's a text...

4 years ago | 0

Answered
create a matrix of maximums
You didn't say there were values anywhere excepting in one column out of this array before -- you don't need no steenkin' loops ...

4 years ago | 0

Answered
List files in current directory based on a pattern in a variable.
weeklyDates = [20101031;20101107;...]; for i=1:numel(weeklyDates) pattern=sprintf('*%d*.nc',weeklyDates(i)); d=dir(patter...

4 years ago | 0

| accepted

Answered
Find a row of the maximum of a matrix
I fail to see the point in an array of 1960x400 of which 1959 columns are all identically zero??? That aside, what's the issue ...

4 years ago | 0

Answered
to build a table with XYZ values
See meshgrid to build the coordinate arrays; you'll have to have the corresponding observation values from somewhere else. Use ...

4 years ago | 0

Answered
Large integers saved as csv files are rounded up
WAD. Per the doc csvwrite (NOT recommended, btw), csvwrite writes a maximum of five significant digits.... Use writematrix i...

4 years ago | 1

| accepted

Answered
Sort twice within the same dataset
Well, it's certainly not totally clear what you mean -- but if you mean sort by multiple columns, see sortrows, the optional sec...

4 years ago | 0

| accepted

Answered
How to apply moving harmonic average on an array?
Simplest is probably just brute-force -- HM=[Kd_1(1) arrayfun(@(i)harmmean(Kd_1(i:i+1)),1:numel(Kd_1)-1) Kd_1(end)].';

4 years ago | 0

Answered
How do I set a parameter based on individual values in an existing array? Should I use a for loop or something else?
The above if...elseif...else...end construct works; there are other ways -- one way w/ MATLAB is fnDL=@(L)interp1([500-eps(500)...

4 years ago | 0

Answered
whats wrong with this code?
But 'vektprosent_best_salts' is an array containing two entries per record, not one. Hence matching "70" by itself is bound to ...

4 years ago | 0

Answered
when i'm trying to save as excel xls to xlsx format in actxserver it doesnot work
You can't pass an OS command to be executed as the file name; my recollection is also that the .Open command needs a fully-quali...

4 years ago | 0

Answered
Why do i keep getting the ereor "The value assigned to variable *** might be unused"
The warning is given because your code never references/uses the frequency vector, f, after defining it -- there's nothing in th...

4 years ago | 1

| accepted

Load more