photo

Stephen23


Actif depuis 2014

Followers: 14   Following: 0

Suspensa Vix Via Fit

Statistiques

All
MATLAB Answers

4 Questions
9 155 Réponses

File Exchange

22 Fichiers

RANG
5
of 298 634

RÉPUTATION
35 649

CONTRIBUTIONS
4 Questions
9 155 Réponses

ACCEPTATION DE VOS RÉPONSES
75.0%

VOTES REÇUS
5 900

RANG
69 of 20 631

RÉPUTATION
12 933

CLASSEMENT MOYEN
4.90

CONTRIBUTIONS
22 Fichiers

TÉLÉCHARGEMENTS
1099

ALL TIME TÉLÉCHARGEMENTS
100575

RANG

of 161 859

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Most Accepted 2024
  • Most Accepted 2023
  • Personal Best Downloads Level 5
  • Editor's Pick
  • Most Accepted 2022
  • Most Accepted 2021
  • Grand Master
  • First Review
  • 5-Star Galaxy Level 5
  • GitHub Submissions Level 3
  • First Submission
  • 36 Month Streak

Afficher les badges

Feeds

Afficher par

Réponse apportée
How does Matlab extract the three columns of data from the ".out" file output by Fluent? What is the code? The attachment file is the data.out
unzip data.zip T = readtable('data.out', FileType='text', Range=3, Delimiter=["(",")"," "], ... VariableNamingRule='preser...

4 jours il y a | 0

Réponse apportée
ODE event callback function does not update the solution vector
"The cause is the way the nargout function handles the event and callback functions." The cause is because you are testing anon...

4 jours il y a | 0

| A accepté

Réponse apportée
How to add a title with mixed italic and normal text with Tex interpreter?
There might be better ways, but this seems to work: title("\it Italic title part 1 \rm\bf and \it Italic title part 2", 'In...

5 jours il y a | 1

| A accepté

Réponse apportée
How to set variable names using Readtable with hierarchical categories (Excel file with merged cells / multiple header rows)
In lieu of a sample data file I created my own (attached) which looks like this (not all columns shown): If you must keep tha...

13 jours il y a | 2

| A accepté

Réponse apportée
Is the Ordering of the Output from combinations() Documented, Repeatable, and Sensible?
1. "Is the ordering of the output rows from combinations documented?" Implicitly. The COMBINATIONS description states "These c...

17 jours il y a | 0

| A accepté

Réponse apportée
Cell array Filtering when using readlines
Do not store lots of scalar strings in a cell array, doing so makes processing them harder: https://www.mathworks.com/help/matl...

18 jours il y a | 0

| A accepté

Réponse apportée
Why READTABLE skips the first line ?
"Why READTABLE skips the first line ?" Possibly because all of the text are shared strings, which perhaps confuses the READTABL...

18 jours il y a | 0

Réponse apportée
Using CurrentPoint in UIAxes in AppDesigner with timedate x axis
Because all of the data are returned in one array any datetime values are converted into a numeric equivalent (i.e. to provide o...

19 jours il y a | 2

| A accepté

Réponse apportée
More unexpected behavior multiplying an array with a double
"I am getting unexpected results when I muliply an array by a double" It is not unexpected, because your data are not what you ...

20 jours il y a | 1

Réponse apportée
How can I get unique entries and their counts and place back into the table?
"I think is due to (x) not being defined or non existing. " No, it is because you invented some syntax when defining the anonym...

29 jours il y a | 0

Réponse apportée
MATLAB loads file it cannot find
"How is it possible, that MATLAB can load a file that it cannot find?" Because of what you did: "...the folder where the files ...

30 jours il y a | 1

| A accepté

Réponse apportée
Read .txt file with dots in filename
"All my current tries using for example "load" or "readmatrix" failed since Matlab always assumes everything after the first dot...

environ un mois il y a | 1

| A accepté

Réponse apportée
How to sync Matlab file location and current pwd of command window?
Do NOT use CD for this. This is exactly what the MATLAB Search Path is for: https://www.mathworks.com/help/matlab/matlab_env/w...

environ un mois il y a | 1

Réponse apportée
Matrix size error using integral
"which makes no sense since I'm multiplying scalars." Nope, you aren't. "Why is this?" Because you are multiplying vectors. T...

environ un mois il y a | 0

| A accepté

Réponse apportée
Problem with formatting operators - textscan
txt = '26 mins 2013-09-17 09:01:45, 29 mins 2013-09-18 16:53:12, 33 mins 2013-09-19 18:24:27,'; Directly obtaining the intege...

environ un mois il y a | 0

Réponse apportée
why textscan can't parse the time like this
"why textscan can't parse the time like this" Because you have a delimiter right in the middle of your datestamp. Clearly that ...

environ un mois il y a | 0

| A accepté

Réponse apportée
how can i get the values of y1, y2? i am only getting the graph.
Return them as function outputs: https://www.mathworks.com/help/matlab/ref/function.html https://www.mathworks.com/help/matlab...

environ 2 mois il y a | 0

| A accepté

Réponse apportée
How to arrange elements in one array to match the position of elements in a second array?
You could find the mapping with ISMEMBER: https://www.mathworks.com/help/matlab/ref/double.ismember.html A = [1,5,3,2,4,4,2,2,...

environ 2 mois il y a | 1

| A accepté

Réponse apportée
Hi, my loop function is not working and giving me index error in my member stiffens matrix. any idea what is the issue? thank you
% define coordinates of each nodes Coord_nodes = [0,0; 10,0; 10,10; 0,10]; % define connection of each element Connect_elemen...

environ 2 mois il y a | 0

| A accepté

Réponse apportée
installing MAT-file version 7.3
From the SAVE documentation: save("tmp\wavedata_0301","wavedata","-v7.3"); % ^^^^^^^ https:...

environ 2 mois il y a | 0

| A accepté

Réponse apportée
Select first three elements of double inside cell array
C = {[56,54,36,35];[58,56,55,36];[89,60,56,45]} D = cellfun(@(v)v(1:3),C,'uni',0)

environ 2 mois il y a | 0

| A accepté

Réponse apportée
How can I import multiple .out files in a single folder as separate tables or arrays?
unzip reports P = '.'; % absolute or relative path to where the files are saved S = dir(fullfile(P,'vxw*.out')); for k = 1:nu...

environ 2 mois il y a | 2

| A accepté

Réponse apportée
Moving mean of a vector with unsorted values
You will need to interlace your data points before calling MOVMEAN. For example: xL = +15.0:-1:-15.0; xR = -14.5:+1:+14.5; yL...

environ 2 mois il y a | 0

Réponse apportée
How to make str2double recognize comma delimited numbers?
Using SSCANF will likely be more efficient than relying on regular expressions: T = readtable('ExampleExcel.xlsx') F = @(t)ssc...

environ 2 mois il y a | 1

Réponse apportée
Interpolation problems in multidimensional space
You do not have gridded data, so all of the attempts with GRIDDEDINTERPOLANT will not work. Using NDGRID does create gridded dat...

2 mois il y a | 1

Réponse apportée
Formatting Vectors using fprintf
R = [6640.441; 0; 0]; C = compose('%7s[%10.3f km]',["";"R = ";""],R); fprintf('%s\n','A) Position with respect to the earth in...

2 mois il y a | 1

| A accepté

Réponse apportée
imagesc output: how to re-update the matrix image only, but keep other things intact, including colorbar, axis tick, axis label, annotation, text...?
"how to re-update the matrix image only, but keep other things intact, including colorbar, axis tick, axis label, annotation, te...

2 mois il y a | 1

| A accepté

Réponse apportée
How to get a string from a cell array given a row?
You are overthinking this: idx = listdlg('ListString', errorlist); code = errorlist(idx); or for k = 1:numel(idx) code...

2 mois il y a | 0

| A accepté

Réponse apportée
Unzip to a cell array, get the csv filles
"I got Error using readtable Unable to find or open '2025-01-28/'. Check the path and filename or file permissions." You get an...

2 mois il y a | 0

| A accepté

Réponse apportée
How can I create multiple function handles in a for loop?
"I would like to know the area under the spline... But I guess this is not the most appropiate approach. Any suggestions?" Use ...

2 mois il y a | 0

| A accepté

Charger plus