Réponse apportée
Errorbar Plot with Line of best fit
S-S is correct that per the documentation lsline only works for scatter plots or not connected lines with plot Perhaps just a l...

plus de 6 ans il y a | 0

Réponse apportée
How to remove dates in graph ?
The error ax.XAxis.TickValues=1:10:length(NewP{:,"Date"}) Error using matlab.graphics.axis.decorator.DatetimeRuler/validateTic...

plus de 6 ans il y a | 0

Réponse apportée
How to find a particular value from 3-d matrix?
If you're certain the value 1.75 exactly exists in the file and that's all you want exactly (to machine precision) then simply ...

plus de 6 ans il y a | 1

Réponse apportée
how to read and create column vectors from this txt file (attached)?
A fixedWidthImportOptions object can help here altho the heading row doesn't quite line up to make it as trivial as could otherw...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Bar graph for two different arrays
Didn't read doc bar did you? It'll take 1:5 on the x-axis but bar([a;b].')

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Removing NaN in Linear Regression Problem. Error in line 66.
You don't pass the table to regress but the variables to be used in the regression -- then you won't run into the issue inside r...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Reordering string arrays if string is >9
<ileexchange/10959-sort_nat-natural-order-sort>

plus de 6 ans il y a | 1

Réponse apportée
read coordinate from a txt file
textscan is overkill for a simple csv file of the above form -- controlpoints=importdata('YOURTEXTFILE.CSV'); and you'll have ...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Convert cell array to double, with comma separated elements
>> v=cell2mat(cellfun(@(s) sscanf(s,'%f,').',c,'UniformOutput',false)) v = 126.5000 250.5000 22.0000 27.0000 127.500...

plus de 6 ans il y a | 1

Réponse apportée
Trouble adding error bars to bar graph
<Answers/379570-how-can-i-place-my-error-bar-in-separate-bar-center> <Answers/359237-how-do-i-label-each-bar-in-bar-group-with-...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Create a maxtrix of row x columns and add values (column-wise) in a loop
Comment moved to Answer since did seem to be the Q? asked... j=0; % initialize other array counter ...

plus de 6 ans il y a | 1

Réponse apportée
Use all table/timetable variables as input arguments of function without writing each variable manually.
As a start altho need more to know precisely what else to do, look at\ >> rowfun(@corrug_parameters,B3_B4,'InputVariables',{'di...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Output from while-loop at fixed values
Either compute the number of timesteps corresponding to your dt and desired frequency if dt is constant and output every N times...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Write matrix to a Tab-Delimited text file
If are only numeric values in those three columns, then why not use the numeric return values from n instead? Depending on the ...

plus de 6 ans il y a | 1

Réponse apportée
Matlab Simplifies Function To 0
That doesn't define a function in MATLAB syntax; it assigns the evaluation of the RHS of the assignment statement to a 3D array ...

plus de 6 ans il y a | 1

Réponse apportée
How to change x and y labels limts
"When I put duration i got error. When I use xtick, the label didnt; fit to reality. " Must not have tried very hard or read t...

plus de 6 ans il y a | 1

Réponse apportée
about a ChemName function
You just pass the struct as the argument to the function and return the same struct; there's nothing required in MATLAB to defin...

plus de 6 ans il y a | 0

Réponse apportée
Center of repeatative/duplicate values in Matlab
val=unique(A); iC=arrayfun(@(x) median(find(A==x)),val); for your A above >> val=unique(A); >> iC=arrayfun(@(x) median(find(...

plus de 6 ans il y a | 0

Réponse apportée
How to delete rows from a TimeSeries variable
delsample timeseries are different...only can address by the time values or events, not linear indexing. I've never found them...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to take common data from two matrix with different dimensions
unzip ACCESS1.0.zip fd='ACCESS1.0'; A=xlsread(fullfile(fd,'ACCESS1.xlsx')); E=xlsread(fullfile(fd,'ERA5_1985_2005.xlsx')); d...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Why are empty square brackets used in this fsolve function?
It's an undocumented trap door that allows other parameters to be passed to the objective function; the [] placeholder bypasses ...

plus de 6 ans il y a | 4

| A accepté

Réponse apportée
How to convert a column in matrix from string to numeric
data = readtable(['data' cell2mat(indexVars(i))], 'Format','%s%f%{yyyyMMddhhmm}D%f%f%f'); 'hh' is for 12-hr day; 'HH' is for 24...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Intersection of a line with constant slope and a line with changing slopes
idx = 2980; % calls upon river profile #2980 out of 10848 channel_height=0:20; channel_length=...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to convert time (duration) to datetime?
The datetime class cannot exist without both a date and a time component. You'll have to assign a date as well... du=duration(...

plus de 6 ans il y a | 1

Réponse apportée
Is it possible to assign new values which are integers to categorical array?
See the above comment, but if there is some reason you really, really need/want the numbers instead on the axes, then hAx=gca; ...

plus de 6 ans il y a | 0

Réponse apportée
I have to compare data from matrix with different dimensions
Convert both to timetable or timeseries objects and use retime to synchronize the two.

plus de 6 ans il y a | 0

Réponse apportée
Pahse Shift as a Function of Height
Well, if you already have a phase shift, that's something else entirely...carrying on from above phasedata=importdata('Schmidt...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Conversion to double from function_handle is not possible error message
function [u]=fixeddiffusion(h,N,dt,t0,theta,u0,uN,uinitial,x0,xN,uexact) ... b=zeros(N-1,1); for i=1:N-1 b(i)=uinitial(i+1);...

plus de 6 ans il y a | 0

Réponse apportée
Datetime comparison near full hours
isBad=~cell2mat(arrayfun(@(t) any(abs(PC_SoftStart-t)<=minutes(1)&~isnat(PC_SoftStart),'all'),TR_SoftStart.Data,'UniformOutput',...

plus de 6 ans il y a | 0

Réponse apportée
Trouble with interpolation and gridding data points
Write a (vectorized) function for M(x1,x2), compute the interpolating grid [X,Y] with meshgrid and then call the function with ...

plus de 6 ans il y a | 1

Charger plus