回答済み
Location of plot for subplot(2,2,3)
The logic is sound but as Steven L points out, it would break existing code going back to the beginning of time so TMW will neve...

5年以上 前 | 0

回答済み
Describe to plots in one line in legend
Found a few minutes -- Actually works better than I had expected... hL=plot(abs(randn(10,4))); set(hL(1:2),{'color'},{'r'}) s...

5年以上 前 | 2

| 採用済み

回答済み
How to plot values in lower and higher x-values with putting a break in the plot for middle x-values?
MATLAB doesn't know about broken axes, unfortunately. You might explore the FEX and see if there are any user submissions ther...

5年以上 前 | 0

回答済み
Performing formulas on .mat files in MATLAB
You don't tell us much to go on, but the averaging is simple -- you just have to have a way to find which column(s) are in the f...

5年以上 前 | 0

回答済み
Create a new row in a loop
f1=10; f2=50; coherence=cell(numel(f1:f2),numel(three_d_trials)); j=0; for freq=f1:f2 j=j+1; for coherence_index = 1:le...

5年以上 前 | 1

| 採用済み

回答済み
Plot a normal figure and animatedline together onthe same figure
... % I want also to plot the following in the same figure % I want the graph to apear in full in the begining not as an anima...

5年以上 前 | 0

| 採用済み

回答済み
plotting live data from a sensor
You are plotting only one point at a time and without having executed a hold on instruction, each call to plot creates a new lin...

5年以上 前 | 0

| 採用済み

回答済み
How can I augment a toolbox to improve its capabilities?
Don't have the TB in Q? so can't go look to see, but if it is an m-file, there are two ways -- you can just edit the copy in pla...

5年以上 前 | 0

回答済み
making a vector of cells
Probably good choice would be to convert the country string/column in the table into a categorical variable; makes for looking f...

5年以上 前 | 1

| 採用済み

回答済み
XLSread - multiple sheets
xlsread has been deprecated; use readcell, readmatrix, readtable instead depending on how you want the data returned and the con...

5年以上 前 | 1

回答済み
How can i fix this error?
NB the following ouput: Input data successfully read. Time Series data divided to 80% Train data and 20% Test data Time Serie...

5年以上 前 | 1

回答済み
How to read a .txt file in matlab ?
The file is irregular -- there are 9 elements in first record and only eight (8) in second. Besides that, they're inconsistent ...

5年以上 前 | 1

| 採用済み

回答済み
split wav file based on txt file (two vectors - start time and duration)
That only would take basic math operations to turn the start times and durations into indices into the the .wav file based on th...

5年以上 前 | 1

回答済み
How can i multiply every row to row values?
>> A=reshape(1:9,3,[]) A = 1.00 4.00 7.00 2.00 5.00 8.00 3...

5年以上 前 | 0

| 採用済み

回答済み
How can I calculate Kurtosis of Sound data?
Kin=arrayfun(@(i1,i2)kurtosis(X(i1:i2)),iStart,iEnd); where X are your data and the two indexing arrays above for the "in group...

5年以上 前 | 0

回答済み
Plotting data from struct
Couple ways of many... XY=reshape([pop.Cost],2,[]).'; plot(XY(:,1),XY(:,2)) or tpop=struct2table(pop); plot(tpop.Cost(:,1),...

5年以上 前 | 2

| 採用済み

回答済み
How to create code that runs on all columns?
"I have a data set of 10583x3352 single ... I need to averge every 167 rows into 1 row for every column." N=167; ...

5年以上 前 | 1

| 採用済み

回答済み
Creating new vectors containing values based on for loop outcome.
vals=interp1(a,a,b,'nearest','extrap'); For above a,b: >> vals vals = 3520.00 7650.00 7650.00 1250....

5年以上 前 | 0

| 採用済み

回答済み
Normalization of Power Spectral Density
It's to make the output amplitude consistent regardless of the frequency resolution of the measurement. See https://community.s...

5年以上 前 | 4

| 採用済み

回答済み
How can I correctly use the parenthesis and write equations
Pd=Pc*((1+(k-1)/2*ac^2*Vpr^2)^(k/(K-1))-1); Which inputs might be vectors, if any, would determine where and if need dot operat...

5年以上 前 | 0

回答済み
How do I make a histogram using value - count pairs?
histogram('categories',categorical(M(:,1)),'bincounts',M(:,2)) to match the number of elements in x,y. Otherwise, have to ...

5年以上 前 | 2

| 採用済み

回答済み
Changing the name of the sheet in excel during a loop for
Each workbook just has one sheet that is to be named with the trailing sequence of the filename? That should be pretty simple, ...

5年以上 前 | 0

| 採用済み

回答済み
Matlab strcmp Error - help
The biggest problem is you're trying to deal with numeric data as string -- convert to numeric. This, unfortunately, isn't hand...

5年以上 前 | 1

| 採用済み

回答済み
How do I calculate the mean of only positive values
mean(X(X>0)) % global mean or arrayfun(@(i) mean(X(X(:,i)>0,i)),1:size(X,2)) % column means depending upon which mean...

5年以上 前 | 0

回答済み
i want to use goto to jump from third line to eighth line.
if (i==4)|((dx/yg(i))<tand(sia)) X else P(i-1)=0 end or if (i~=4)&((dx/yg(i))>=tand(sia)) P(i-1)=0 else X end

5年以上 前 | 0

回答済み
Linear model fit error
x1 = [7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8 6.5 8.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5].'; x2 = [12 12 12 12 12 12 12 12 20 20 20 20...

5年以上 前 | 0

回答済み
I am getting error "Conversion to cell from uint8 is not possible." Can anyone please help in debugging this? Thank you for your time.
segmented_images=cell(1,3); did indeed define to be a cell array, but then you wrote segmented_images(k)=colors; segmented_im...

5年以上 前 | 1

| 採用済み

回答済み
When using listdlg to create a menu, how do you access the user input?
>> cList = {'United Kingdom','Bulgaria','Germany','Greece','Sweden','Netherlands','Spain','Romania','Luxembourg','Poland'}; [in...

5年以上 前 | 0

| 採用済み

回答済み
Edit a column in a dat file with some header lines and a table
A) goes something like nHeaders=11; % or whatever fidi=fopen(filenameIn,'r'); fido=fopen(filenameOut,'w'); for i=1:nHeaders...

5年以上 前 | 1

回答済み
How to transfer data from a messy .rpt file to an array
>> data=textread('output.rpt','%s','delimiter','\n','headerlines',5) data = 14×1 cell array {'CASE = ""' ...

5年以上 前 | 1

さらに読み込む