Risposto
Search a larger dataset through a smaller data set of intervals
Taking a wild stab at what might be intended from the above data arrangement; assuming that the larger timetable(?) covers a tim...

oltre 3 anni fa | 0

Risposto
Using subplot in a for loop along with a nested While loop to plot data from a large matrix
Not at all clear why you're using a triply-nested loop here???? To do the requested operation on the array is simply timeTrace...

oltre 3 anni fa | 0

Risposto
Different Fontsize of texts in stackedplot()
If you mean you want them to be different for each type object, sorry, "no can do". There's only one global 'fontsize' and 'fon...

oltre 3 anni fa | 0

Risposto
I have a data 5x148992 , i have to extract data column wise and check if there is any changes wrt previous column and display when there are chnages?
" i want to print only if the conse[c]utive col[u]mns are different ..." Well, then there should not be a disp statement outsid...

oltre 3 anni fa | 0

Risposto
Undefine Temperatures with Depth
See <Logical Array Indexing> and use the MATLAB <missing> instead of some magic number for missing values. An example for one ...

oltre 3 anni fa | 0

| accettato

Risposto
How can I delete plot Label on Legend?
"As you can see on my plot below, on Legend, I get data1, data2, etc. How can I remove these?" Don't draw what you don't want ...

oltre 3 anni fa | 0

Risposto
How do I add monthly labels to my time series plot?
Ah! Typos are the bane of programming! :) Then t=datetime(1990,1,1):datetime(2016,12,31); % datetime vector is5=isbetwe...

oltre 3 anni fa | 0

Risposto
Pull numeric data from a mixed text data into a matrix in a loop
d=dir('yourmatchingFileWildCardExpression*.txt'); % get the list of candidate files dir() struct pat=digitsPattern(1)+"."+dig...

oltre 3 anni fa | 0

Risposto
Ideal way to import csv data and create column vectors that will be variables i want to work with
filename='RESP_Trial_3.csv'; column_names={'RLT','RLTx','RLTy','RLTz','RUT','RUTx','RUTy','RUTz','RIC','RICx','RICy','RICz',......

oltre 3 anni fa | 0

| accettato

Risposto
How do I find rows based on 2 column variables, then only retain the previous 3 rows?
% Rows to retain for average response time estimates iKeep=B(contains(B.condition, 'infrequent') & B.correct==0); will be your...

oltre 3 anni fa | 0

| accettato

Risposto
Determine available disk space
Try this for comparison if on Windows... !powershell "Get-PSDrive C | Select-Object @{Name='drive';Expression={$_.Name}}, @{Na...

oltre 3 anni fa | 0

Risposto
How to aplly a function to all columns?
See fft -- in particular, note the first comment... "fft(X) is the discrete Fourier transform (DFT) of vector X. For matrices,...

oltre 3 anni fa | 0

Risposto
Centering labels in a bar plot
Let bar do the work for you...you didn't supply all the needed code to run the example, but something similar would be x=1:33; ...

oltre 3 anni fa | 0

| accettato

Risposto
Application deployment designed in appdesigner
The application install will download/install the runtime if it isn't on the target machine when install the app the first time ...

oltre 3 anni fa | 0

| accettato

Risposto
How to interpolate a set of data wher the X size is different for the Y size
x=1:10;y=1:3; % coarse spacing z=rand(numel(x),numel(y)); surf(y,x.',z) hold ...

oltre 3 anni fa | 0

| accettato

Risposto
How to find out how many participants are in each group of my combined matrix (31230x5)
If I understand the description, the end result is easiest via hH=histogram(categorical(M(:,2))); % display histogram of n...

oltre 3 anni fa | 0

Risposto
how to plot index (rownumbers) in a larger dataset as range?
Presuming you don't try do do the logical addressing until the data array is defined so you don't have the initial error shown, ...

oltre 3 anni fa | 0

| accettato

Risposto
Connecting two data points in a plot with a line, and determining this line's slope
For just between two points, may as well just use m=(y2-y1)./(x2-x1); % slope between two points Or, if specify by choosin...

oltre 3 anni fa | 1

| accettato

Risposto
How do I run a MatLab script via the windows command prompt such that it does not output back to the terminal when using the -batch argment?
stderr is the second output stream and its redirection symbol syntax is "2>" To redirect both to same place use > nul 2>&1 Th...

oltre 3 anni fa | 0

Risposto
Hide trendlines on plots, via app designer
You forgot to show us how you're creating the plot, but if you will save the line handles when plotting, then you can toggle the...

oltre 3 anni fa | 0

| accettato

Risposto
loop in a 3D matrix
OK, that's kinda' what I thought but wasn't sure...to average each frequency over the 120 planes, you don't need any loops at al...

oltre 3 anni fa | 1

| accettato

Risposto
Is there a simple method to exclude empty categories from charts
It's a little extra code to write, but it should be able to be made generic -- follow the lead of @Cris LaPierre in that thread;...

oltre 3 anni fa | 0

| accettato

Risposto
I wrote 2 functions and I don't know why they don't work-even when I change the file name to the name of the first function I recive error
"...and I got the error: Unrecognized function or variable 'calcTailorExp'." "Even though I've define it as the same file of my...

oltre 3 anni fa | 0

| accettato

Risposto
How to plot using errorbar but the error bar only in every 5 points
First, 3) above isn't so -- if you plot the same data with plot() and with errorbar() the two lines will overlap identically; th...

oltre 3 anni fa | 1

Risposto
How to write the data to a file with a specific format?
>> fmt=[repmat('%14.6E',1,size(X,1)) '\n']; >> fprintf(fmt,X.') 0.000000E+00 1.250000E-01 1.250000E-01 0.000000E+00 2.50...

oltre 3 anni fa | 0

Risposto
Unexpected high memory usage in MATLAB.
Absolutely no way anybody here can diagnose something without seeing the code -- it's quite possible your code has an inadverten...

oltre 3 anni fa | 1

Risposto
Downsample and reconstruct a subsection of a vector?
If they're just vectors, I think the simplest is probably the best and likely the quickest... LO=geo.FineSamplingBox(1); HI=geo...

oltre 3 anni fa | 0

Risposto
How to make non iterative code faster than the iterative when using line by line backslash inverse ?
"Is there any other solution ?" Yeah, go on to the next step in your overall problem. There's nothing wrong with for...end loo...

oltre 3 anni fa | 1

Risposto
How to change comma to dott for multiple text files and save the changes in the same text files?
Your variable MyFiles is a dir() struct containing the list of files; addressing it does NOT open the file, simply refers to the...

oltre 3 anni fa | 1

Risposto
How do I delete a repeated element in a single array cell?
In [~,b3] = find(sam_pulse(x,:) == max(sam_pulse(x,:))); %find the cell with max value you're doing the wrong thing using ma...

oltre 3 anni fa | 1

| accettato

Carica altro