Réponse apportée
How to sort data files without actually writing these files
Well, maybe I'll take a shot at it and see if get the idea... First a comment on the existing code -- in ... l = fget...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Read data from .txt file
The file and your local system LOCALE setting aren't in synch it appears -- the default MATLAB locale is US which uses the decim...

plus de 3 ans il y a | 0

Réponse apportée
i have to get similar output as i have uploaded.why my data is getting repeated again and again?
Carrying on from @David Hill's most excellent start, tT=readtable(websave('input.csv','https://www.mathworks.com/matlabcentral/...

plus de 3 ans il y a | 0

Réponse apportée
read text file - header and numerical part
Q1: A. See fgets to keep newline B: Don't need ExtractBetween, use ExtractAfter; then don't need the actual \n in the d...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to remove compare 2 arrays so that when there is a in a column, it removes the column in another array
You have only one row logical but three rows of labels??? But, assuming that's expected and the need is to remove all columns t...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How to solve this errror about reading in complex numbers?
Previously answered what appears to be virtually identical Q? <answers/1818965-how-to-read-only-last-2-columns-of-csv-format-fi...

plus de 3 ans il y a | 0

Réponse apportée
How do you insert a row or a column into a cell array?
No differently than with any other array -- although inserting in the middle somewhere requires copying (although with cell arra...

plus de 3 ans il y a | 3

| A accepté

Réponse apportée
How to label X-axis on bar graph?
cats=categorical(["Baseline";compose('Food deprivation(Week%d)',[1:3].')]); results=randi(20,4,1); bar(cats,results) The prob...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How do I use a variable assigned in one function to call another function?
Forget global exists; for virtually all cases, it's not the better solution. Instead, use the return values your function(s) ca...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
one column in to multiple column
It's not possible to have a table with different number or rows by variable(column); MATLAB is NOT a spreadsheet (which is agood...

plus de 3 ans il y a | 0

Réponse apportée
Filling missing times in timetable with NaN using retime
load(websave('data.mat','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1148080/data.mat')) ttD=data_site_num_t...

plus de 3 ans il y a | 0

Réponse apportée
Axes not reconizing figure handle
hF=figure; hAx=axes(hF,'Position',[0.1300 0.3300 0.7750 0.700]); xlabel(hAx,'SomeText') ylabel(hAx,'MoreText') xlim(hAx,[0 3...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Sorting Data into a Table
% make up some data N=randi(5,3,1); x=[];for i=1:numel(N),x=[x;i*ones(N(i),1)];end x=x(randperm(numel(x))) % the engine (cel...

plus de 3 ans il y a | 0

Réponse apportée
Plotting a two peak model as a fitted line on a probplot.
Actually, when I had a few minutes to think about it, it's not too hard; you just have to define the associated CDF function to ...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
Suppose i have a 1000*24 binary vectors each having 4 ones and 20 zeros in each row .Now want to extract the spcific vectors that have ones only at the speific positions.
Is that two separate cases of 12:15 AND 14:17 or one case that includes both cases? And is it all or any that must be 1? V1=12...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Folder names sorting issues after reading from directory
I've never noticed a case in which dir returned a list differering in order from that returned by the OS -- what if you look at ...

plus de 3 ans il y a | 0

Réponse apportée
How to use num2str inside text with latex interpreter?
i=1; text(0.4,0.5,"L_{" + i + "}") i=i+1; text(0.4,0.4,"\it L_{" + i + "}") i=i+1; text(0.4,0.3,"\it L\rm_{" + i + "}") Va...

plus de 3 ans il y a | 1

Réponse apportée
Reuse figure/axes properties from figure A for figures B,C,D
hAxGolden=gca; % the gold standard hF=figure; % create new figure hAx=copyobj(hAxGolden,hF);...

plus de 3 ans il y a | 0

Réponse apportée
Loop through files of different length
When you compute what h is in samples (if sample rate varies, otherwise just set it as a constant), then [R,C]=size(ECGdata); ...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
I have a .txt file that I need to turn into a vector
v=readmatrix('YourFile.txt');

plus de 3 ans il y a | 0

Réponse apportée
how to read only last 2 columns of csv format file?
data=readtable(websave('plot.csv','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1147855/plot.csv'),'readvariab...

plus de 3 ans il y a | 0

Réponse apportée
How do I get the line of best fit and its equation from multiple datasets?
Presuming the problem with the file location is resolved, a fresh start is in order -- readvars is not a good choice here it wou...

plus de 3 ans il y a | 0

Réponse apportée
Represent the total mask usage data (for all counties) in a form of a pie chart
explode=[]; to not use the parameter; the empty cell array doesn't work, the empty double does; a logical array is expected.

plus de 3 ans il y a | 0

Réponse apportée
How to fake an app handle in the arguments?
Use mustBeScalarOrEmpty validation function instead of fixed size would get past that hurdle. I've no klew whether it'll actua...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Need help making a plot from data in Excel with three columns and 2000 rows, to get two variables on the same axis.
Size of data is of no matter to syntax -- if you can plot a vector of 5 elements, you can plot one of thousands... data=readmat...

plus de 3 ans il y a | 0

Réponse apportée
Fastest way to index large arrays
With the lookup arrays structured as they are, you don't need a lookup at all; you can just calculate the row directly -- fnRow...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
organising data with fscanf
file=readlines(websave('data.txt','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1145645/data.txt')); data=[];...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
Code to import every 50th line of .csv isn't working
That's hard way to go about it -- data=readmatrix('Plain_VHB_Cyclic_Test_1.csv','numheaderlines',2); data=data(1:50:end,:);

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to adjust the position of the x-axis ticks and put the angle degree on the values of the x-axis ticks?
With all values in one decade, log plot gets pretty squished; you can set the xlim to just cover the actual range and then only ...

plus de 3 ans il y a | 0

Charger plus