Answered
How do I plot only the lower error bars?
residual = N - y_new; errorbar(x_new,y_new,residual,[]) Input arguments for four inputs are: errorbar(x,y,neg,pos) If only t...

5 years ago | 0

Answered
How do I combine multiple plots that use hAxes = 'NextPlot' using subplot?
%% Plot1 s=[186,561,831,864,865,870,943,997,1001,1049,1055,1063,1077, 1078, 1171,1180,1190,1494,1497,1499,1522]; hAx(1)=subplo...

5 years ago | 0

Answered
create a table next to a graph on figure
A table object can't be put in a figure and, AFAIK, it's not possible to redirect command window output to a figure other than b...

5 years ago | 0

| accepted

Answered
loop through cell arrays and perform calculations using rows from another cell array
DATA={table(rand(4,3))}; DATA(2,1)={table(rand(4,3))}; To={table(randi(5,4,1))}; To(2,1)={table(randi(5,4,1))}; % preliminarie...

5 years ago | 0

Answered
How to make the average for columns in cvs folder contains (700 file) ?
Well, you've got to read the files somehow...show us what you have tried...here's the link to one way Mathworks suggests -- <im...

5 years ago | 0

Answered
First number that comes after a list of numbers
>> [A;interp1([-eps(1) B],[-eps(1) B],A,'next')].' ans = 1 4 8 9 20 25 >>

5 years ago | 0

| accepted

Answered
How to create an average of 2 lines on a single graph
OK, I see...the data are collected on a up- and down-slope symmetric ramp.. Try something like-- top=readmatrix('top_sensor_da...

5 years ago | 0

| accepted

Answered
Histogram plot isn't shown properly.
Can't change the characteristics of the image; any linear scaling of the axis will only change the numerical values, not the sh...

5 years ago | 0

| accepted

Answered
Averaging lots of columns at once and then combining them
"...I cannot figure out a way to take the average of each col[o]umn without manually inputing it. " Fs = 2048; ...

5 years ago | 0

| accepted

Answered
unique command and external Excel files
Well, there is a duplicate in the 2nd column... >> d=xlsread('x.xlsx','Sheet2'); >> arrayfun(@(i)numel(unique(d(:,i)))==numel(...

5 years ago | 0

| accepted

Answered
storing a 100x100 matrix from each iteration in a single new matrix
Two options -- either use a cell array each element of which is a 2D array or a 3D array in which each plane is one time step. ...

5 years ago | 0

| accepted

Answered
how to average seasonly?
This one is cute... :) Unfortunately, timetable won't accept a 2D array by row so have to do things directly... t=linspace(dat...

5 years ago | 0

Answered
loop for cell using variable as a the input
gtm_segmentations = [34 36]; % use double array, no point in cell array here corr_time_intervals = [20 22]; ...

5 years ago | 0

Answered
How is it possible to slice up a table into smaller ones if the data contains floating point numbers?
ix=find(diff(XYZ(:,1))<0); will locate the breakpoints where the X coordinate resets. Remember diff(x) contains one less point...

5 years ago | 1

| accepted

Answered
Plot segments of an array with NaN using a for loop
Rough outline to accomplish -- ix=find(isnan(A)); ix=ix(2:end); % find the NaN sections, ignore first for i=1:numel(ix)...

5 years ago | 0

| accepted

Answered
Convert Text into Date Format
>> datetime('196307','InputFormat','yyyyMM') ans = datetime 01-Jul-1963 >> or >> datetime([floor(196307/100) 196307...

5 years ago | 1

Answered
x-axis difference between two graphs
As suggested above, interp1 works just fine... red=readtable('red.txt');black=readtable('black.txt'); % read data plot(red.Va...

5 years ago | 0

Answered
finding cells with positive values in a cell array with empty cells, cells of positive integers, and cells of nans
>> idx=cellfun(@(c)any(c>0),co_burst); >> whos idx Name Size Bytes Class Attributes idx ...

5 years ago | 0

| accepted

Answered
Match timestamps from different data sets
See <matlab timetables> for the introduction to using timetables In particular for your particular Q? read the Topic on Resampl...

5 years ago | 0

Answered
How can I read text files and compile a joint XY Position history
Well, it does seem to "just work" -- almost. jsondecode doesn't know about the 2D array bit, but it did decode the JSON info bl...

5 years ago | 0

| accepted

Answered
While loop in if and for loop
for i = 2:N if Gyr_2(i,3) Output=RBK2(Input); elseif Gyr_2(i,1) || Gyr_2(i,2) || Ori_2(i,1) || Ori_2(i,2) Output...

5 years ago | 0

Answered
How to suppress opening of command window?
Use the -batch option See <matlabwindows> for all startup options (windows, there are other links for other OS)

5 years ago | 0

Answered
creating a coundown alarm everytime a function have been asked
function [] = alarm(varargin) % alarm -- display countdown left % Optional arguments % 'init' -- reset counter persisten...

5 years ago | 0

Answered
How to use Xlswrite command in actxserver and how to avoid script gets hanged due to hworkbook.close command?
". I just need to avoid xlswrite in my command" Indeed. You don't want to be running dueling ActiveX processors at the same ti...

5 years ago | 0

| accepted

Answered
Fill in missing data, unrecorded values, multiple columns
"am somewhat new to matlab and this is all I need help with..." In that case, you're doing well indeed! Congratulations!!! :)...

5 years ago | 0

Answered
How to code an equation with a variable that implies to all cell and save in same size of input array (using nested for loop)
data =xlsread('***'); minOverall=min(data,[],'all'); rngOverall=range(data,'all'); data=(data-minOverall)/rngOverall; Given ...

5 years ago | 0

Answered
How to return entire elements of a column of a matrix while that column includes maximum value of among all other elements of matrix
[~,ix]=max(max(A)); % return column of max of 2D array B=A(:,ix); % the resulting column Too bad there's...

5 years ago | 0

| accepted

Answered
Change file matlab workspace name as the folder name
" 'POWER.mat' , and the folder name is 'Results2021'" Well, it depends on whether you have already created the .mat file by hav...

5 years ago | 1

| accepted

Answered
Three variables (two independent) 3D plotting
M=1; N=2; flg=true; for B=-20:20; X=M+B;l T=[]; for L=-10:10; Y=N+X; r=B+Y+L^2; sca...

5 years ago | 0

| accepted

Answered
How can we convert struct file to txt file?
arrayfun(@(s) writematrix([s.S s.F],[s.ID '.txt']),structWheeze)

5 years ago | 0

| accepted

Load more