Answered
How to plot the average and std shade of 4 different datasets?
I'm rushed for time so not complete solution, but the outline of how to proceed... [mxx,ix1]=max(dataset1_x); % ...

5 years ago | 1

| accepted

Answered
printing a table made of 3 arrays
disp() just displays something to the command window without the "variable =" prefix; it doesn't save anything. Also, the hint ...

5 years ago | 1

Answered
Matlab code for Stirmark
Don't think anybody has undertaken task -- and seems pointless to write in high-level m-code. Somebody could do a service and w...

5 years ago | 0

Answered
Problem with serialport communication
Extremely difficult to debug what we can't simulate in cases like this without access to the instrument... But, the last proper...

5 years ago | 0

| accepted

Answered
EDF reading: edfread gives timetable; possible to get struct?
Undoubtedly your colleague still has the FEX version and has it where it aliases the builtin version. This would happen trans...

5 years ago | 1

| accepted

Answered
Reading multiple sheets from an excel file
You'll just have to loop over the sheets; use sheetnames to return the list of sheets in the given file and iterate over it--pre...

5 years ago | 2

| accepted

Answered
How to make scatter
Per IA's direction...with a correction for the data variables--dpb :) You don't need two axes for that, just hold on hold on ...

5 years ago | 0

| accepted

Answered
If statement in a for loop
See above comment -- your IF expression is not ever TRUE unless each and every member of NewDist < 1 so it is never executed. B...

5 years ago | 0

Answered
how to write a Matlab code to sum 10 terms of rational numbers?
N1=39; d1=8; N2=36; d2=12; D1=2; D2=5; S=N1/D1-N2/D2; for i=2:10 N1=N1-d1; N2=N2-d2; D1=D1+d1; D2=D2+d2 S=S+N...

5 years ago | 0

Answered
How to display serial port setting?
See doc serialport and auxiliary section on serial port devices for all the skinny...

5 years ago | 0

Answered
How to multiple set of normally distributed data?
You rest the RNG before each of the two sets in first code segment but only at the beginning of the loop in the second so the tw...

5 years ago | 0

| accepted

Answered
Finding the place where number is in a sequence and insert it in between that sequence
in=find(b>a,1,"last"); a=[a(1:in) b a(in+1:end)];

5 years ago | 0

| accepted

Answered
I only want to include the observations that have observations through the whole timeframe.
NFULL=588; % the full file number -- use variables instead of "magic numbers" in code tSave=groupfilter(tTable,'Permnoco',@...

5 years ago | 1

| accepted

Answered
How to manage NaN values and calculate mean under conditions
M=movmean(Daily,[0 2],'omitnan'); or, for the specific file >> tDaily=readtable('Daily data.xlsx'); >> tDaily.MTmean=movmean(...

5 years ago | 0

Answered
Write a warning dialog with a dynamic number of inputs
Two ways -- for your above with cellstr() array, just use {:} instead of char() ... >> emptyF=cellstr("Folder"+['A':'C'].') em...

5 years ago | 0

Answered
How to make a table with date times and durations?
>> t=table(rampD_start,rampD_end,'VariableNames',{'Start','End'}); >> head(t) ans = 8×2 table Start End ...

5 years ago | 2

| accepted

Answered
How can i modify the values on the y axis ?
You can label the ticks however you wish -- yticklabels(yticks-200); However, that doesn't change the data of course so the da...

5 years ago | 0

Answered
How to edit exported regression model in regression learner app, after downloading the model.
No provisions are made for loading anything but data -- seems silly design oversight, but that appears to be the way things are....

5 years ago | 0

Answered
contourf without isoline but with label
This one is nearly intractable -- the underlying text handles are tied to the color of the line, although one could set their co...

5 years ago | 1

Answered
How I can change the arrow head and style in a compass plot?
That's not easy -- the arrowheads are part of the lines so they're not separate objects that can be changed independently of the...

5 years ago | 1

| accepted

Answered
Extracting Data above a specifc year
idx isn't the year; it's an index into the array by year. Simply yrWant=1981; dWant=dataFC21(dataFC21.Year>=yrWant,:); will ...

5 years ago | 0

| accepted

Answered
Row and column of minim value from 3D matrix
I'm going to shorten variable names... nP=size(X,3); % number planes in array X r=zeros(nP,1...

5 years ago | 1

| accepted

Answered
I need the Documentary evidence that MATLAB complier runtime 7.13 is for free.
It is freely available, yes. But, The Mathworks doesn't ballyhoo it around in big, bold print, no. See one of many prior answe...

5 years ago | 0

Answered
How do I multiples of a number in an array
Well, what have you tried? Follow the recipe given -- y=[8x;2*x.^2-1]; % x is vector If size(x) --> 2,N, then will need to s...

5 years ago | 0

Answered
Error when i use findpeaks
findpeaks(Aceleracion,Tiempo); Unlike plot() and many other functions, since findpeaks can be called without a corollary time/f...

5 years ago | 0

| accepted

Answered
Cross Product of Each Row in Two Large Arrays
Description C = cross(A,B) returns the cross product of A and B. ... If A and B are matrices or multidimensional arrays, .....

5 years ago | 0

| accepted

Answered
reading text files based on specific sub-string values.
nWant=3; wildCardName=sprintf('*%02d*.txt',nWant); d=dir(wildCardName); Unfortunately, the MATLAB implementation of dir() onl...

5 years ago | 0

| accepted

Answered
problem with polyval plotting
Your x values aren't sorted so they're being plotted with connecting lines in the order they are in the input arrays ... The co...

5 years ago | 1

| accepted

Answered
Trouble with findpeaks - 14 EEG signals and peaks on same plot - different colors
T.Timestamp=T.Timestamp-T.Timestamp(1); % 1622835751.18846; varlist={'AF3','F7','F3','FC5','T7','P7','O1','O2','P8','T8','FC6...

5 years ago | 0

| accepted

Answered
how to replace a variable with its value in function handle?
Nope. You get what you want; while the string representation of the function echos the input, any variable(s) inside an anonymo...

5 years ago | 0

| accepted

Load more