回答済み
h5read incorrectly reading exponents
Resolve what, precisely? >> 1.3675214E7 ans = 13675214 >> whos ans Name Size Bytes Class Att...

8年弱 前 | 0

| 採用済み

回答済み
How do you find a sinusoidal curve on given data without using curve fit tool box?
Then you have to do it yourself with the nonlinear optimization routines...the example is at <https://www.mathworks.com/help/mat...

8年弱 前 | 0

回答済み
How can i change 0.25*0.25 degree data file(matrix of 241*241) into 1.0*1.0 degree data file.
'Pends on what you want the result to represent... junPPTdecimated=jun_Ppt_monthly(1:4:end,1:4:end); % every fourth eleme...

約8年 前 | 1

| 採用済み

回答済み
What is the best way to downsample a tall timetable? Neither "decimate" nor "retime" seems to work.
The _newTimeStep_ or _newTimes_ input parameters could be used for the purpose; _newTimeStep_ is a fixed time step so that ...

約8年 前 | 0

回答済み
write vectors in cell array to excel
Frankly, the easiest way would be to start with a normal array of nan(50,MaxRowLength) and then fill each row with the results a...

約8年 前 | 0

回答済み
Importing Numerically Named Excel Files into MATLAB
The best solution is to not name files that way...when creating them use a format such that leading zeros are filled in the nume...

約8年 前 | 0

| 採用済み

回答済み
Plotting a box plot and a time series on the same graph ? as a distribution over time. boxplot(reshape(fluxO2tom01and23,4,[])); and plot(o_optode_mean1,1:196)
I answered this in the previous Q? in response to the comment after you said you didn't have |yyaxis|, Rebecca... <https://www.m...

約8年 前 | 0

| 採用済み

回答済み
Reading huge number of excel files in a loop
All that function is is a loop around |intersect| one vector at a time; that's all you need must do, there's no need to put all ...

約8年 前 | 0

回答済み
How to implement ||Wi||^2 = 1 for all i ?
Read doc norm

約8年 前 | 0

回答済み
How To extract a matrix from the text file?
fid=fopen('yourfile'); while ~feof(fid) l=fgetl(fid); if ~isempty(strfind(l,'begin')), break, end end array...

約8年 前 | 0

| 採用済み

回答済み
How do I merge 3 figures from 3 different programs in a single figure ?
Syntax for |copyobj| is two arguments, the handle (vector) of things to retrieve and the handle of the target. I've no idea w...

約8年 前 | 1

回答済み
I need to make a box plot, I am stuck making more than one
boxplot(reshape(date(4,[])) or, somewhat less cryptic perhaps if you are using an actual |timeseries| object with calendar ...

約8年 前 | 1

| 採用済み

回答済み
How can I add errorbars to a log-log plot?
Well, what is the log() of a negative value supposed to be? You didn't show the values so we can't tell but clearly value-err...

約8年 前 | 0

回答済み
Different values of datnumber for same date-time?
It's the result of floating point rounding in the two different ways you generated the datenum values -- In full_data_ti...

約8年 前 | 1

| 採用済み

回答済み
Importing values from excel
_"...It says NaN for cells such as 'DFX' or '78669-87'."_ As rightfully it should for numeric values; those aren't numbers bu...

約8年 前 | 0

回答済み
How can i find the maximum value of the first element in a stack of matrices?
You don't say or show how |A, B, C| were obtained, but therein is the heart of your problem -- do _not_ create sequentially-name...

約8年 前 | 1

| 採用済み

回答済み
How to import variable names array from Excel as symbolic variables?
Why symbolic variables; why not simple variables? It's generally an indication of a lack of structure in an algorithm to have...

約8年 前 | 0

| 採用済み

回答済み
how I can get fundamental signal in 50 Hz using FFT (fast Fourier transformer)
As David's modification would show, there's nothing wrong with the code for the frequency |if| the signal |R11voltage| was actua...

約8年 前 | 0

回答済み
how to let elements in each column of a matrix divided by the first element in each column
x=x./x(1,:); uses recent automagic(*) singleton expansion, if you have earlier release that errors on size mismatch then us...

約8年 前 | 0

回答済み
Using retime command for daily minimum when there are two variables
With appropriate acknowledgement to Sean, a slight rearrangement is a little less verbose in use...with the previous TD table of...

約8年 前 | 1

回答済み
How to collect datetime from text entry and use in plot?
_Almost_ there...you're trying to convert the string containing the date vector representation, but |datetime| doesn't know that...

約8年 前 | 1

| 採用済み

回答済み
Plotting scatter plot in a FOR loop with different colors
clrs=['r','g','b','c','m','y','k']; for i=1:N ... scatter(y,z,sz,c(i),'filled') ... end for the define...

約8年 前 | 0

| 採用済み

回答済み
Datetime format using tabularTextDatastore
Looks like you set the _'SelectedFormats'_ property to match the variables. TabularTextDatastore Properties ... Sel...

約8年 前 | 1

| 採用済み

回答済み
Efficiently processing unusual date/time format
Once you have the cell array that holds the date strings, then |datetime| _will_ convert from day of year... >> datetime(r,...

約8年 前 | 1

| 採用済み

回答済み
How to generate sequenced file names with file extensions?
On the same line... >> ext='.jpg'; >> fn=num2str([1:4].',['pcimage%04d' ext]) fn = 4×15 char array 'pcimage00...

約8年 前 | 1

回答済み
How can i make one table with other tables(one line and much columns) in vertically?
[y0, fs] = wavread('eugeniasam1'); %file .wav [y1_1, fs] = wavread('speaker1 (6)'); [y1_2, fs] = wavread('speaker1 (...

約8年 前 | 0

回答済み
Sorting and averaging Data
Are the position data points exact duplicates? If so, [g,tGPS]=findgroups(t.GPS_LONG,t.GPS_LAT); % groups table ...

約8年 前 | 0

| 採用済み

回答済み
how can we estimate memory requirements for nchoosek?
>> help nchoosek nchoosek Binomial coefficient or all combinations. ... nchoosek(V,K) where V is a vector of length...

約8年 前 | 1

| 採用済み

さらに読み込む