Réponse apportée
Plot 3 axis from Excel
Q=readmatrix('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1127410/Heat%20exchange.xlsx'); Tin=Q(1,2:end);Tou...

presque 4 ans il y a | 1

Réponse apportée
I am receiving error for the following code , but I can't understand where and what to change I am having error at 5th line
You forgot to attach the error message in context or to even give us a klew what raw contents are...but, taking a guess as to wh...

presque 4 ans il y a | 0

Réponse apportée
How do I plot an image in Log-Log axis?
... h = imagesc(usl,usg,P); hAx=gca; set(hAx,{'XScale','YScale'},{'log','log'})

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to set different marker and marker edgecolor on single line in Plot?
plot is a single object for each line -- ergo, each line can have only one linestyle (colors, marker, line). To have a second m...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Read csv with quotes and datetime stamp (readtable configuration)
readtable will import the file time field as a datetime variable automagically; you don't need to do anything except read it. Y...

presque 4 ans il y a | 1

Réponse apportée
Extracting time valued between lower and upper bound
>> tmp=a(1:10,[end-2:end]) % look at a sample of the pertinent data ans = 10×3 table datetime ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Cell Array Conversion to a Numeric Array by using a loop
You can try m=cellfun(@(x)movmean(x,3),TECs,'UniformOutput',0); If the content of TECs is an array of double arrays, you'll ge...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to pass textscan data to array?
OK, with the multiple-line header, and parsing it, the code isn't so bad, after all... :) I'd probably still do a little differ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
Changing Function number every loop
Seems would be just call it in a loop or even with arrayfun... search='c'; target='y'; N=[4:4:16].'; ret=arrayfun(@(n)Target...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
filtering excel commands in matlab
tA=readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1121415/animals.xlsx'); tA=convertvars(tA,@iscells...

presque 4 ans il y a | 0

Réponse apportée
How can i extract data from data from table using a string of words.
data_table=readtable("Normal and Tumor TPM.xlsx","Sheet","Normal Expression","VariableNamingRule","preserve"); geneslist=strt...

presque 4 ans il y a | 1

Réponse apportée
Changing colors for findpeaks function
Sure, but not with the triplet form of plot to use anything except the named colors... hL=plot(x,y,'-', pk,loc,'*'); ...

presque 4 ans il y a | 0

Réponse apportée
I want to make, MATLAB can log in by for number of people and use the software (but not simultaneously).
You should contact your site manager or, if you are the site rep, contact Sales at TMW for install support. Your last sentenc...

presque 4 ans il y a | 1

Réponse apportée
Plot matrix dependent on x against x
You can/could try surf with X,Y the ordinal vectors 1:9 and Z-->CMR. Use hold on to add for each x to add to the same plot; if ...

presque 4 ans il y a | 0

Réponse apportée
How to convert a long txt sequence of single digit numbers (e.g. '100101011101010111...') to number array?
s = '1000011110'; n = sscanf(s,'%1d') Probably fastest. Or you can compare s = '1000011110'; n =str2num(s.') If the string...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
imhist and histogram giving different results
For <imhist>, the n bins of the histogram are each half-open intervals computed for a double as you've passed as (p−1.5)/(n−1) ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to precisely place textarrow?
This has always been a pain in the royal patootie...the annotaton objects are in figure coordinates while the data inside the pl...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to save data to existing excel file
OK, had a few more minutes -- as @Cris LaPierre (and I had also) suggests, it would be a somewhat simpler job to build the table...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Want to correct experimental data using a black box non-linear model of the data
Look into Kalman filters...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to save data to existing excel file
You didn't define cellReference before trying to use it in the else clause if the file didn't exist. Must not have executed tha...

presque 4 ans il y a | 0

Réponse apportée
Turn all excel sheet background to white
<docs.microsoft.com/...vba/api/excel.worksheet.usedrange>

presque 4 ans il y a | 0

Réponse apportée
How to create different Plots for different functions while each function has been plotted using hold on
%enthalpy plot (KJ/mol Vs Bar)- hold on; for t = 1:nt %varying temperature to create isotherms for p = 1:np ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
change output from row to column and display one cell value instead of multiple
[locAll,typeAll]=find(mVocs==1) will return two vectors of the row,column indices (that you've inexplicably called loc/typeAll...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to locate the the difference between the max. and min in matrix rows
M=[ 2 4 7 10 28; 1 3.6 8 11 27; 0.5 5 9.5 13 32].'; D=range(M,2) Almost never need loops in MATLAB for such...

presque 4 ans il y a | 0

Réponse apportée
How do I make a vector of fitted values and a vector of residual values from a linear model of y on x
As per the above comment, if you have either of the toolboxes, I'd recommend using one of those routines instead, but to get by ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How to use the values of an array as inputs for a function?
Well, it would be easier if the function were written to accept an array instead of the six different variables -- but, you can ...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
How can I extract certain rows from a CSV imported table?
Unless the table is just huge or there really is never to be any need for the other variables, there's no reason to not keep the...

presque 4 ans il y a | 0

| A accepté

Réponse apportée
Producing incorrect results with abs command
You didn't provide the input x array so we can (easily) duplicate, but now this one is easy... :) You're confusing the output d...

presque 4 ans il y a | 0

Réponse apportée
fscanf not giving any output
Absolutely no way to debug without the data file, but either The file is empty even if it exists, or The file content is such ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
How to find mean and errorbars for scatter plot at various x values.
The specific answer is M1=mean(Mat2,'all'); S1=std(Mat2,[],'all'); general answer is to not create multiple sequentially-name...

presque 4 ans il y a | 1

Charger plus