Community Profile

photo

Jorg Woehl


University of Wisconsin-Milwaukee

Last seen: 3 jours il y a Actif depuis 2015

Followers: 0   Following: 0

Contact

Statistiques

All
  • Knowledgeable Level 3
  • Personal Best Downloads Level 1
  • GitHub Submissions Level 3
  • Revival Level 1
  • Knowledgeable Level 2
  • Solver
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • First Answer

Afficher les badges

Feeds

Afficher par

A soumis


Physical Constants
Internationally recommended values of the fundamental constants in physics and chemistry

19 jours il y a | 24 téléchargements |

Thumbnail

A soumis


getOSfont
Name and size of the system user interface font (default system font)

21 jours il y a | 2 téléchargements |

Thumbnail

A soumis


detectOS
Name and version number of the operating system

21 jours il y a | 7 téléchargements |

Thumbnail

A résolu


Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...

plus d'un an il y a

A résolu


MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9

plus d'un an il y a

A résolu


MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8

plus d'un an il y a

A résolu


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

plus d'un an il y a

A résolu


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

plus d'un an il y a

A résolu


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

plus d'un an il y a

A soumis


points2axes
Conversion factors between points and axis units

presque 3 ans il y a | 1 téléchargement |

A soumis


Vectors
MATLAB toolkit for the creation of scientific drawings and illustrations

presque 3 ans il y a | 2 téléchargements |

Thumbnail

A répondu
Multi-batch csv processing error
Hi Denxybel, the main problem lies in the readtable statement. Althought the documentation states that "by default, readtable cr...

environ 3 ans il y a | 0

| A accepté

A répondu
how to identify a string in an external text file and save the text of the two following lines in arrays, by delimiters
% open textfile fid = fopen('myfile.txt'); % read line by line until the pattern is found pattern = 'A C G Y R E'; tline =...

environ 3 ans il y a | 0

| A accepté

A répondu
delete NaN values from Matrix & use Matrix for other operations
% Sample arrays A = [1; 2; 3; 4; NaN; 6; NaN; 8; 9; 10]; B = [NaN; 12; 13; NaN; 15; 16; 17; 18; 9999; 20]; We want to get rid...

environ 3 ans il y a | 0

| A accepté

A répondu
How to substract a loop from the first 10 cell values of the loop?
Would this work? X(2,n) = X(1,n) - X(1,mod(n-1,10)+1)

environ 3 ans il y a | 0

| A accepté

A répondu
Find location of exact string
regexp(data, '\<sine delta 2') The \< indicates that the search string must occur at the beginning of a new word - see MATLAB r...

environ 3 ans il y a | 1

| A accepté

A répondu
Find location of exact string
Starting with R2020b, you can use pattern with strfind, which allows you to only find matches if they are preceded by a nonlette...

environ 3 ans il y a | 0

A répondu
a function generating a square matrix
A = [11, 12, 13, 14; 21, 22, 23, 24; 31, 32, 33, 34; 41, 42, 43, 44] A comma (optional) starts a new column in a matrix, while ...

environ 3 ans il y a | 0

A répondu
How make mutiple plots in one plot
The issue is that you are opening your files in the first loop, one after another, but only the last opened file will be process...

environ 3 ans il y a | 0

| A accepté

A répondu
Convert a structure array to a list
c = struct2cell(sol); ilaplace([c{:}].')

environ 3 ans il y a | 0

| A accepté

A répondu
How to output a for loop as a table with each iteration and result displayed
Hi Jorge, First preallocate your table (outside the loop) according to the number of years in your list: T = table('Size', [nu...

environ 3 ans il y a | 0

A répondu
ode45 for non linear ODEs
The solution below follows closely the "Solve Nonstiff Equation" example in the ode45 documentation. We first need to write an...

environ 3 ans il y a | 0

A répondu
Extract x,y,z coordinates from figure
Hi Aidan, let's take the peaks surface plot as an example for a 3D surface plot. We create a table from the surface data and wri...

environ 3 ans il y a | 0

A répondu
When i covert a structure to cell array, my fieldNames disappear
Shambhavi, you can use fieldnames to extract the fieldnames from your structure and add it to the end of your new cell array. Fo...

environ 3 ans il y a | 0

A répondu
Invalidate user entry by using isnan or isempty function
str2double returns NaN (not-a-number) when it cannot convert text to a number. You can therefore simply use isnan to test if a n...

environ 3 ans il y a | 0

A répondu
Combinations of array rows with exclusion
This answer does not have any of the duplicates that are present in my previous answer: A = [20 10;20 15;20 30;22 15;25 10; 30 ...

environ 3 ans il y a | 0

| A accepté

A répondu
Combinations of array rows with exclusion
OK, so how about this? A = [20 10;20 15;20 30;22 15;25 10; 30 10]; cellArr{1} = deleteOneRow(A); for i = 2:size(A,1)-4 ...

environ 3 ans il y a | 1

A répondu
Code for action when ui toggle button is pressed
Yes, that's indeed the problem - the selected button never changes because you only have one button in the button group, so the ...

environ 3 ans il y a | 1

| A accepté

A répondu
error on using fplot
Your solution usol contains two symbolic variables, x and d, but fplot can only deal with functions of a single variable. I supp...

environ 3 ans il y a | 0

| A accepté

A répondu
Display same image with different rotations
I assume you are talking about 2D images: % prepare an image but hide it initially (for better timing) h = imagesc(peaks, 'Vis...

environ 3 ans il y a | 0

Charger plus