Stephen23 - MATLAB Central
photo

Stephen23


Attivo dal 2014

Followers: 13   Following: 0

Suspensa Vix Via Fit

Statistica

All
MATLAB AnswersFile ExchangeFrom 09/14 to 04/25Use left and right arrows to move selectionFrom 09/14Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 Domande
9.146 Risposte

File Exchange

22 File

RANK
5
of 298.237

REPUTAZIONE
35.607

CONTRIBUTI
4 Domande
9.146 Risposte

ACCETTAZIONE DELLE RISPOSTE
75.0%

VOTI RICEVUTI
5.891

RANK
71 of 20.553

REPUTAZIONE
12.829

VALUTAZIONE MEDIA
4.90

CONTRIBUTI
22 File

DOWNLOAD
962

ALL TIME DOWNLOAD
99613

RANK

of 160.651

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 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

Visualizza badge

Feeds

Visto da

Risposto
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...

3 giorni fa | 0

Inviato


Number to Scientific Prefix
Convert a numeric value to SI-prefixed text (aka engineering / metric prefix). Bonus: binary prefixes!

3 giorni fa | 8 download |

4.8 / 5
Thumbnail

Inviato


Scientific Prefix to Number
Convert SI-prefixed text (aka engineering / metric prefix) into numeric values. Bonus: binary prefixes!

3 giorni fa | 2 download |

5.0 / 5
Thumbnail

Risposto
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 ...

3 giorni fa | 1

| accettato

Risposto
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...

3 giorni fa | 1

| accettato

Risposto
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...

12 giorni fa | 1

Risposto
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...

12 giorni fa | 0

| accettato

Risposto
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...

12 giorni fa | 0

Risposto
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 ...

12 giorni fa | 0

| accettato

Risposto
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...

18 giorni fa | 0

| accettato

Risposto
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,...

19 giorni fa | 1

| accettato

Inviato


Number to Words
Convert a numeric to a string with the English name of the number value (GB/IN/US).

22 giorni fa | 5 download |

5.0 / 5
Thumbnail

Inviato


Words to Number
Convert English number name/s written in a string to numeric value/s (GB/IN/US).

22 giorni fa | 3 download |

0.0 / 5
Thumbnail

Risposto
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...

23 giorni fa | 0

| accettato

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

26 giorni fa | 0

| accettato

Risposto
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)

27 giorni fa | 0

| accettato

Risposto
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...

27 giorni fa | 2

| accettato

Inviato


Numeric to Ordinal-String
Convert numeric values to a string array of integers with ordinal suffixes. Fully vectorized!

circa un mese fa | 4 download |

5.0 / 5
Thumbnail

Risposto
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...

circa un mese fa | 0

Risposto
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...

circa un mese fa | 1

Risposto
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...

circa un mese fa | 1

Risposto
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...

circa un mese fa | 1

| accettato

Risposto
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...

circa un mese fa | 1

| accettato

Risposto
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...

circa un mese fa | 0

| accettato

Risposto
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...

circa un mese fa | 0

| accettato

Risposto
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 ...

circa un mese fa | 0

| accettato

Risposto
How can I use Interp1 here instead of ismembertol?
Fiddling around with indices and ISMEMBERTOL are red-herrings and misdirections from your actual task. Essentially what you are ...

circa un mese fa | 0

Risposto
Problem graphing the % error between a real function and its linearization using contourf in MATLAB
"I think the problem is the way I'm calculating the %Error between those two functions..." That is the problem, because you are...

circa un mese fa | 1

| accettato

Risposto
How to use "image" function to view JP2 images with alpha channel?
The accepted answer is incorrect. "When I do "a = imread(filename)" and "image(a)", it gives the following errors..." "The var...

circa un mese fa | 2

Risposto
How to iterate through a cell array to mean each ith column from each matrix within the cell array?
Fake data (I removed the superfluous outer loop): for k = 1:5 C{1,k} = rand(500,26); C{2,k} = rand(500,24); C{3,...

circa 2 mesi fa | 1

Carica altro