Réponse apportée
How to read this kind of info out of a txt file and post them into Excel files?
Basically, just read the file record-by-record searching for the matching header strings and when find a section header, then re...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to average monthly data using a specific method in Matlab?
There may be a more clever way, but brute force seems straightforward enough... A=reshape(vectorA,3,[]); ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to retrieve multiple values from a 3D array
Ignoring the excessively verbose variable names that keeps code from being visible without scrolling or breaking line and thereb...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Computing the number of variables belonging to each data type
How about n_cl=countcats(categorical(varfun(@class,M,'OutputFormat','cell')))

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Can I plot a line function, and a plot function under an if statement?
"can put a line and plot function under an if statement. ...? It works when I try it ..." It would seem you've answered your ow...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Reading Specific numbers from a text file
fileID = fopen(filename); Cdata = textscan(fileID,'%f32 %f32 %f32','HeaderLines',5); % find the point coordi...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How to protect arbitrary variable names
Functions have their own workspace although internal and anonymous functions share their context with the containing workspace.....

environ 5 ans il y a | 0

| A accepté

Réponse apportée
displaying element of matrix
To use disp and have two decimal points, use format bank first, otherwise will get whatever precision is associated with the cur...

environ 5 ans il y a | 0

Réponse apportée
How to plot 3 graphs in 1 figure?
There's an example of 2 on top and one on bottom that should have given the clue of how to bo about it... hAx(1)=subplot(2,2,1)...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
Need to run two counters in a foor loop
If you describe the real problem to be solved instead, it'll lead to more efficient getting to the right answer, but if the resu...

environ 5 ans il y a | 0

Réponse apportée
How can I find peak from matrix
What's wrong with what you've done for the one? findpeaks is one of the functions that has not been vectorized (owing to its co...

environ 5 ans il y a | 0

Réponse apportée
Write a tabbed matrix in a txt file
Read the rest of the documentation for dlmwrite -- Name-Value Pair Arguments ... 'precision' — Numeric precision ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Full Factorial Design of Experiments
"I know about the matlab function fullfact([,]) but since I will use decimal numbers i needed a differen solution." There's no ...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
for loop to subtract every element from the first element for a given trial
Another job for varfun and grouping variables-- tt.TrialTime=cell2mat(rowfun(@(m)m-m(1),tt,'GroupingVariables','TrialNumber', ....

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How do I make two arrays go from largest to smallest?
[a,ix] = sort([4 8 11 7],'descend'); % keep the optional original order vector when sort b = b(ix); ...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
how to plot cell array and how to get its imaginary part?
Use cell indexing expressions-- >> c={[rand(4,1),rand(4,1)]}; % presume the format described for some sample data >> c{:} ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Understanding the structfun() or cellfun() commands
As the error message and doc says, structfun applies a function to each field in a scalar struct; you have a struct array -- not...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
How can I find mean crossing irregularity?
z=randn(1,1000); % sample dataset zs=(detrend(z)>0); % convert to binary at mean iz=diff(find([0 zs])); % crossin...

environ 5 ans il y a | 0

Réponse apportée
Assign same linewidth to a grouped barplot
You can't use the "dot" notation with an array of handles, anyway; must use set here, or a looping construct of some sort. se...

environ 5 ans il y a | 1

Réponse apportée
How to compare two columns in a table and delete that row having same values in that columns?
c=string({'column1' 'column 2' 'columns3' 'ball' 'bat' 'gloves' 'bat' 'gloves' 'bat' 'ball' ...

environ 5 ans il y a | 0

Réponse apportée
Error using corrplot function
OK, I played with one of the sample datasets used for illustrating some other regression stuff...it is possible to start with pl...

environ 5 ans il y a | 0

Réponse apportée
Binomial Distribution when mean and variance is given
Well, sometimes one is given a nonsensical problem -- if so, then one has to inform the requestor of the fact and get a differen...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
2 digits after the dot
In the first case, you'll have to use >> string(arrayfun(@(n)sprintf('%.2f',n),vals,'UniformOutput',false)) ans = 2×3 str...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Generating a heat map of adjacency matrix
Presuming you want the displayed values of the cells to still be their totals, then s = [1 1 1 2 2 3]; t = [2 3 4 5 6 7]; G =...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
Check for missing argument or incorrect argument data type in call to function 'predict'.
I've never used fitrlinear (didn't know it existed, in fact), but it appears that it returns a composite object and that the req...

environ 5 ans il y a | 1

| A accepté

Réponse apportée
How to change values to 3 decimal points and 7 significant figures?
You can't set an arbitrary format string or precision for command window output; only the few selectable choices given by the fo...

environ 5 ans il y a | 3

| A accepté

Réponse apportée
Search for minimal value in column of table when value in other columns are the same
function [f,ix]=fastest(d,r) % return minimum of input time of travel array, d and % corresponding row index of minimum from ...

environ 5 ans il y a | 0

| A accepté

Réponse apportée
histogram style graph with several different data types with each type coloured differently
Actually, it's not too bad to just make up something...not sure where and why you ran into difficulties without seeing what sort...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
how to read a data from text file
zein=readlines('yourfilename.txt'); xyz=str2double(split(extractBetween(zein(3:end-1),'(',')')," "));

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I order a matrix in a specific order?
I've no klew what amplapi is, but if you have a text file like the first, reading it into MATLAB will not reorder it. >> which ...

plus de 5 ans il y a | 0

| A accepté

Charger plus