回答済み
How to select the part of the tables in a cell?
N1=98; C=cellfun(@(t) t(N1:end,:),C,'uni',0);

6年以上 前 | 1

| 採用済み

回答済み
how to create a numeric tick label offset
x=[384230 384231 284232 ...]; X0=384200; % offset value -- uses arbitrary origin hL=plot(x-X0,y); ...

6年以上 前 | 0

| 採用済み

回答済み
Save .xls in certain folder
You saved the variable app.Pedobarography_Values in the file 'Pedobarography_Values.xslx' but by the documentation for xlswrite ...

6年以上 前 | 0

回答済み
How to delete axes and tick in figure?
Precisely. As your question says, you're trying to mess with axis properties, not those of the figure. Substitute hAx=gca; ...

6年以上 前 | 0

| 採用済み

回答済み
How do you make individual points in a loglog graph appear? I am looking for the slope.
hLL=loglog(melting,temperature,'x-'); % Save line handles; line + marker 'x'

6年以上 前 | 0

| 採用済み

回答済み
How to read rows of data in .csv file and turn them into arrays?
textscan is record oriented. Your file has sections; you have to read a section, rinse and repeat. Something like fmt1='delay...

6年以上 前 | 0

回答済み
error only showing up with one for loop -- can't figure out what the problem is? going crazy?
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 257-by-1. Error in...

6年以上 前 | 0

| 採用済み

回答済み
Minimize cmd.exe window launched from MATLAB?
Use a batch file or multiple command on the executable and START yourbatch /MIN to create the process minimized. Kick this o...

6年以上 前 | 1

| 採用済み

回答済み
How to group variables together
Not as "folders" per se, no. MATLAB doesn't have the concept of a scoping mechanism for variables independently. Where you see...

6年以上 前 | 0

回答済み
Read from an Excel File and assign index that have the max/min value
Use the optional returned location variable and ind2sub to convert the position to coordinates. See the documentation; it shows...

6年以上 前 | 1

| 採用済み

回答済み
"the variable assigned to a may be unused"
In %the build max heap function function maxheap = buildmaxheap(x,n) a = x; for i = floor(n/2):-1:1 %call heapify t...

6年以上 前 | 0

回答済み
Polyfit minus one term
Without toolbox, use backslash operator, \ X=[x.^[3 2 1 0]]; X(:,2)=0; % design matrix straight calculation b=X\y; ...

6年以上 前 | 0

回答済み
position of axis label
"There is no property to set to make the positioning automatic." Ah, but there is...unfortunately, it's another of those frustr...

6年以上 前 | 1

| 採用済み

回答済み
How to remove points from a plot during pause
Indeed, pause halts virtually everything...I'm not a GUI guy but two possibilities I can think of; there may be better for those...

6年以上 前 | 0

回答済み
How to load selected files, in a sequence, and implement them in a for loop?
"I want to process 400 frames, every 800 frames, and keep doing this for the length of the files..." ... nProc=400; nSkip=80...

6年以上 前 | 0

| 採用済み

回答済み
Plotting Error bars using minimum and maximum values in Matlab
Just make a vector of max(y), min(y) the same length as x and add/subtract to the mean for the error bar lengths. Since both fu...

6年以上 前 | 1

| 採用済み

回答済み
Iterate thru each row on a Matrix and return the result on a vector
Don't need no steenkin' loops! This is MATLAB!!! :) kurt=kurtosis(y.').'; Above uses the fact that most ML functions in gener...

6年以上 前 | 1

| 採用済み

回答済み
timetable 2 table error
Don't need to convert, plot() is overloaded to be datetime aware. Just use the t-table time variable (presuming that's what you...

6年以上 前 | 2

| 採用済み

回答済み
I receive error when trying to use a simple OLS function?
"...certainly nothing should be out of context here. " Well, other than the missing function, the error says line 33 and there'...

6年以上 前 | 0

回答済み
readmatrix for single Excel cells
Don't have recent-enough version here to test to confirm, but if is so and reproducible on latest release, that would appear to ...

6年以上 前 | 0

| 採用済み

回答済み
Scatter plot with categorical x axis
'pixels' isn't an allowable argument for the x value position...it's a char() array string array and that's confusing the input ...

6年以上 前 | 0

| 採用済み

回答済み
Getting this error "In an assignment A(:) = B, the number of elements in A and B must be the same."
dec2hex returns the character representation of the value in its argument in hexadecimal...that will be in your case an array of...

6年以上 前 | 0

回答済み
How to write a Loop to run a specific code to every table in a cell
D='C:\Users\Behzad\Desktop\New folder (2)'; d=dir(fullfile(D, '*.xlsx')); for i=1:numel(d) tt=readtable(fullfile(d(i).folde...

6年以上 前 | 3

回答済み
how to compute the average of several repeats of a program in matlab?
An array for multiple LHS assignment cannot contain expressions. in [Arforest(k), ADT(k) , Ask(k)] = allaccuracydata(rforest(k...

6年以上 前 | 1

| 採用済み

回答済み
No appropriate method, property, or field 'Lables' for class 'matlab.io.datastore.ImageDatastore'.
It's spelled "labels", not "lables" testLabeles=testSet.Lables; should be testLabels=testSet.Labels; Of course, let the auto...

6年以上 前 | 2

| 採用済み

回答済み
Find variable name of categorical values repeated a number of times
This is one of two ways...convert to a string represenation so can use string matching functions or use logical addressing and t...

6年以上 前 | 0

回答済み
How can I solve a dlmread error on A2016a?
dlmread will read ONLY numeric data; the message is telling you there's alphanumeric data in the section of the file you're tryi...

6年以上 前 | 0

| 採用済み

回答済み
configuration of subplots - editing titles, fonts and so on
That would be the obvious solution, yes. If the specific title is more or less random text, that's about the only way other tha...

6年以上 前 | 0

回答済み
Plotting two curves on a Datetime scale.
t1=datetime(t1,'InputFormat','uuuu-MM-dd''T''HH:mm:SS'); % convert first to datetime t2=seconds(0:20:280).'+t1(1); ...

6年以上 前 | 1

| 採用済み

回答済み
How to determine values between two points and two times?
<Subscript-into-times-of-timetable> illustrates the time range. Logical addressing on variables is simply writing the expressi...

6年以上 前 | 0

| 採用済み

さらに読み込む