답변 있음
Default interactions during buttondownfcn for geoaxes ???
yes, the defaultInteraction is disabled when you set a window function like the buttondwnfcn. However, it is reenabled if the ca...

거의 2년 전 | 0

답변 있음
Operator '-' is not supported for operands of type 'table'
try e.g. (Quat{i}{2:end,:} - Quat{i}{1:end-1,:})./(Time{i}{2:end}-Time{i}{1:end-1})'; instead of (Quat{i}(2:end,:) - Quat{i}(...

거의 2년 전 | 0

| 수락됨

답변 있음
create a sparse multidimensional matrix
you can try this: myData=[1 2 3 4; 5 6 7 8; 9 10 11 12]; % get sizes dataChunkLength=size(myData,...

거의 2년 전 | 0

답변 있음
My code is keep plotting the wrong data
may the scatter3() command is suffiecient to visualize your data, you interpolate (e.g. interp3) your XYZ data to generate more ...

거의 2년 전 | 0

답변 있음
Step-by-step calculation of rectangular window
or you use the movsum function fs=10000; t=0:1/fs:3; tau=0.25; tauInSamp=tau*fs; spikeTimes= randi(numel(t),10,1); % generat...

거의 2년 전 | 0

답변 있음
Step-by-step calculation of rectangular window
i suggest you just add the rectangular window at the specified times given by the spices and the spice amplitude: fs=10000; t=...

거의 2년 전 | 0

| 수락됨

답변 있음
how to concatenate two tables efficiently
before concatenation you can go trough all tables and add up the number of rows. Then preallocate the table using three columns ...

거의 2년 전 | 0

답변 있음
let a script run in other script with variable parameters
it really sounds like you actally should change your script to a fcuntion. Running a script giving paramters to it is exactly wh...

거의 2년 전 | 1

답변 있음
How to print value from Structure in MATLAB
you can access the 4 doubles in the cell StagPRFValue by e.g. CombineOutput(1).ValueStructure.StagPRFValue{1} the other two ...

거의 2년 전 | 0

답변 있음
Interpolating points in a 3D space with one line
have a look into the polyfitn() function on FEX

거의 2년 전 | 1

답변 있음
Call a function within an if statement
try randomtasks(n)==1 i guess without the (n) you would compare a vector to a value e.g. [1 3 2]==1 which is not true and th...

거의 2년 전 | 0

| 수락됨

답변 있음
need help for understanding audio compression code using dct
it shows, how a sound could sound if you transmit only 128 dct values per block instead of 512 sound values per block % read au...

거의 2년 전 | 0

답변 있음
How to plot the average wavelet magnitude over range of frequencies
why not use the output of the cwt function? you can average it yourself: load mtlb t=(0:numel(mtlb)-1)/Fs; [wt,f,coi]=cwt(m...

거의 2년 전 | 0

| 수락됨

답변 있음
Find the width of a peak
do you just want to measure the peak width of this data set only? if yes, i should be telatively easy locating the peak with min...

거의 2년 전 | 0

답변 있음
Resampling vector to have homogeneous length between trials
you can use the interp1() function to produce an equal number of samples per jump

거의 2년 전 | 0

답변 있음
how to clean data by deleting [0 0]
use rowsToDelete=~any(AB,2); or rowsToDelete=all(~AB,2); AB(rowsToDelete,:)=[]; or rowsToKeep=any(AB,2); AB=AB(rowsToKeep...

거의 2년 전 | 0

| 수락됨

답변 있음
Finding the max value in 1st column of values based on a range in the 2nd column of values
max(yourMat( yourMat(:,2)>0.09 && yourMat(:,2)<0.11 ,1)) for the first range and so on?

거의 2년 전 | 0

답변 있음
Find rising and falling point
you can identify those points using a threshold for the differential signal, something like find( abs(diff(x)) > someThreshol...

거의 2년 전 | 1

답변 있음
How can I get the mean data from under the graphs?
what about a general threshold like 10 here? mean(all_data(all_data>10))

거의 2년 전 | 0

답변 있음
How can I study Autocorrelation function of common inputs?
you can simply generate your own vectors in matlab and do some studying e.g. rectPulse = [zeros(1,10) ones(1,15) zeros(1,10)];...

거의 2년 전 | 1

답변 있음
I need to change a graphic without using unwrap
you can unwrap manually. if you have data x and y myWrapThr=-150; dy=diff(y); dy(dy<myWrapThr)=dy(dy<myWrapT...

거의 2년 전 | 0

답변 있음
define color range in scatter plot
i do not fully understand, you want to use the pallett for split to 0 to 3000, but at a certain threshold you want to use black ...

거의 2년 전 | 0

| 수락됨

답변 있음
Fourier Transform of Seismic Waves
subtract the mean before fft to improve visibility of frequencies or use dB view by calculating 20*log10(P1) explanation: the...

거의 2년 전 | 1

답변 있음
Plotted image is clear but saved image is blurry- why?
use png instead of jpg, then no compression is applied and the quality will stay good there ate several methods whichbaffect ...

거의 2년 전 | 0

답변 있음
Why do certain images require imshow(imagename,[]). whereas others don't?
the answer loes within the variable class. the original inage is uint8 which can have values between 0 and 255, this means imsho...

거의 2년 전 | 1

| 수락됨

답변 있음
Joining two columns and exporting to excel
use mat2cell before joining them! [mat2cell(A) mat2cell(B)]

거의 2년 전 | 0

답변 있음
Double condition to find index
myData=...; fs=2000; minLength=ceil(fs*0.05); highVals=myData>20; searchFor=conv(highVals,ones(1,minLength),'s...

거의 2년 전 | 0

답변 있음
Extracting multiple row values (with unequal range) in a column separately
dat=readmatrix('saf_wind.csv'); dat(dat==9999)=[]; whereIsNan=find(isnan(dat)); yourMeans=zeros(1,numel(whereIsNan)+1); for ...

거의 2년 전 | 1

질문


Speeding up fread for random position in big file
dear community, at the moment i need to read one or multiple image(s) from a big data file. since I build a live data viewer an...

거의 2년 전 | 답변 수: 3 | 0

3

답변

답변 있음
I want to replace the hyphens with en dashes in a plot axes.
i suggest you have a look into the yticklabels() and xticklabels() and do some replacement of '-' with the en dash char(0x2013)....

거의 2년 전 | 0

| 수락됨

더 보기