A répondu
Outerjoin does not merge the keys
As Kevin implies, your are using all four variables in smalltable as keys. That makes no sense. On top of that, there are NO com...

presque 2 ans il y a | 0

A répondu
Combination of two signals with different sample rates
Use a timetable, and call synchronize. synchronize uses interp1, but it may be that you particularly want to use the SP-oriented...

presque 2 ans il y a | 0

A répondu
Problem in determining standard error and plotting 3 error bars
Zhou, independently from how to make the figure, this code Data = table2array(WORK01S1); % convert it into array Temp = ...

presque 2 ans il y a | 1

A répondu
Select best time in an array
You are making your life more difficult using fopen etc. Use writetable and readtable: >> laptimes = readtable("laptimes.txt","...

presque 2 ans il y a | 1

| A accepté

A répondu
tic/toc versus time.perf_counter_ns()
The doc doesn't say you can't use tic/toc to time very short things, and clearly that is not true: >> tic, x = 1; toc Elapsed ...

presque 2 ans il y a | 0

A répondu
How to extract time series averaged over a region?
Keegan, there's a bunch of ways to do this, here's one that uses a timetable: >> lat = ncread("chl2020.nc","latitude"); >> lon...

presque 2 ans il y a | 0

| A accepté

A répondu
How can I merge successive row values (sum of the values) of the column Y according to a condition in column X?
You want to do grouped sums, where the groups are defined by consecutive zeros in X. Once you have the groups defined as a new v...

presque 2 ans il y a | 0

A répondu
Stackedplot: Incorrect x-axis values & multi-variable usage
Jackson, you have a table, and while stackedplot knows to plot against time with a timetable, it can't know what to plot against...

environ 2 ans il y a | 0

| A accepté

A répondu
How to do interpolation only if data interval is > than 3h?
StarStrider's suggestion of datetime and retime is the way to go. Also, like SS, I am mostly guessing at what you are asking for...

environ 2 ans il y a | 0

| A accepté

A répondu
readtable decide which coloumns are read as string and which as number. xlsx file
Magnus, detectImportOptions and subsequent modifications on what it returns are what you are looking for. You can set any or all...

environ 2 ans il y a | 0

A répondu
How do I load only part of a table saved to a .mat file?
You might look into using datastores, which would, in effect, allow you to load pieces.

environ 2 ans il y a | 0

A répondu
Read variable in .mat workspace
Rachael, the times are not part of the data, they are "metadata". But as your screenshot shows, the row times of the Acceleratio...

environ 2 ans il y a | 0

A répondu
Table of tables. Subtables have variable height
Joanna, I suspect that you are 95% of the way there, but it's hard to tell. You say, "each column of subtables has the same widt...

environ 2 ans il y a | 0

A répondu
How to do a lookup for the best number that suits a condition between two arrays?
If you create gap as a row, and shim as a column, this is only a couple of lines. < will automatically expand the two vectors to...

environ 2 ans il y a | 0

A répondu
Why is my table displaying "1 x 1 table" instead of the actual values
It may be that your matrix1 is not a numeric matrix, but rather is itself a table. You have not provide enough information for a...

environ 2 ans il y a | 0

A répondu
How to tell two categorical arrays with different categories names are the same
You don't have categorical arrays, you have numeric arrays. If you had categorical arrays, you'd just look at their categories.

environ 2 ans il y a | 0

| A accepté

A répondu
Separate multi-word comma separated cell into rows
[Edited to be even modern by using split, not strsplit, join, not strjoin, and double, not str2double.] Here's a more modern ve...

environ 2 ans il y a | 1

A répondu
Plot two x-axis in a graph with Time(calendar month/year) on axis and Hour on another x-axis
This made little sense to me until I realized that the times were elapsed times from the beginning of data collection i hours, a...

environ 2 ans il y a | 0

A répondu
How do you convert DateTime Strings into Date and Time values (seconds or month,day,time) Trying to plot wind speed by time
Cam, what problem are you having. Your screenshot suggests you have a vector of datetimes. Use that in plot, or whatever chartin...

environ 2 ans il y a | 0

A répondu
Subscripting into a table using one subscript (as in t(i)) is not supported. Specify a row subscript and a variable subscript, as in t(rows,vars). To select variables, use t(:
As the error message suggests, all you need is a colon as the second subscript. data = readtable('numfile.xlsx') ... dataTrai...

environ 2 ans il y a | 0

A répondu
Get and interpolate missed daily data
Tis is a one-liner with timetables and retime: >> tt = readtimetable("missed data.xlsx") Warning: Column headers from the file...

environ 2 ans il y a | 0

| A accepté

A répondu
How to convert an excel file (.csv) to a .wav format/any other audio format file?
This should give a hint that xlsread is not the right way to go. In this case, you want to use readmatrix: a = readmatrix("w...

environ 2 ans il y a | 0

A répondu
Import values from excel to use it as content
You can index into a vector of your numic values with a categorical: >> opts = detectImportOptions("Book1.2.xlsx") >> opts.Var...

environ 2 ans il y a | 0

| A accepté

A répondu
Inserting Date Time into code
You need to read 20141018_1.txt into a timetable so you have the timestamps for each for of rainfall data. Every other line in t...

environ 2 ans il y a | 0

A répondu
Combining many variables into one table
In recent MATLAB version, there's Simulink.Simulation.Dataset called extractTimetable. Not sure if that's what you have, but it ...

environ 2 ans il y a | 0

A répondu
Use loop to Summarize the Data using MATLAB
Not sure what you are trying to do. Maybe you are trying to get all the Energy data into one array? It's not clerar from your qu...

environ 2 ans il y a | 0

A répondu
Use timetable as x axis in heatmap
Amir, according to your screenshots, you do NOT have a timetable. You have a table containg one datetime variable, and a separat...

environ 2 ans il y a | 0

| A accepté

A répondu
How do I combine rows of a 2D cell array with 1D cell arrays of varying lengths?
Mixed data are what tables (or timetables) are for: >> SID = ["sid001";"sid002";"sid003";"sid004";"sid005"]; >> Status = categ...

environ 2 ans il y a | 0

| A accepté

A répondu
Compare columns of different tables and extract value
This sounds like you need a join. Also, probably a timetable: >> data = readtimetable('Thess_20062100.csv'); >> data.Daily_Tap...

environ 2 ans il y a | 0

| A accepté

A répondu
Storing values in a matrix
This will be MUCH easier using a timetable. It's a one-liner: >> tt = timetable(rand(100,1),'RowTimes',datetime(2022,3,9,1:100,...

environ 2 ans il y a | 1

Charger plus