Leos Pohl
Followers: 0 Following: 0
Statistik
13 Fragen
0 Antworten
RANG
19.267
of 295.467
REPUTATION
2
BEITRÄGE
13 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
23.08%
ERHALTENE STIMMEN
2
RANG
of 20.234
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.912
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Writing mat file from fortran
I am trying to save an array generated in Fortran to mat file so that i can read it in matlab. I am using gfortran to compile th...
mehr als 2 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
array of structs how to preallocate and assign
I have a struct; s.a = 1; s.b=[1 2 3]; and i want a struct array such that: sa(1).a = 1; sa(1).b=s.b=[1 2 3]; sa(2).a=3; ...
etwa 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Is there a way to start a parellel pool with maximum available workers as the cores on the machine?
Is there a way to start a parellel pool with maximum available workers as the cores on the machine? I am using a compiled code ...
etwa 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
What is the most correct way of determining whether variable contains a number
From what i have read, isnumeric is useless since eg. nan returns numeric output. Some answers mention to use str2double but str...
mehr als 3 Jahre vor | 3 Antworten | 0
3
AntwortenFrage
Submitting parallel compiled code to SLURM
I have a compiled application. I am trying to run it with SLURM on several nodes. The application itself is parallel with local ...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Running on cluster without parallel server with slurm
I have access to a cluster where there is only a single matlab license and it is to be used for compilation purposes only with m...
mehr als 3 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Converting text file to struct
I am trying to read values from text file into a struct. The original assignement to a struct was like this: C.fname_dem =...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Easiest way to load structure array from a text file
I currently have a structure array defined in the code as: C.a = "something"; C.b = 1; % useful comment C.c = [ 1.3, 2.0, 3....
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to prevent matlab from exponential form in displaying arrays
When I print some array, matlab prints: ans = 1.0e-14 * 0.1 0.2 ... Is there any way to preve...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Is there a way to access array elements returned by a function directly
Assume this code: a=magic(4); then I can do: a(1,2) to access the elements of the matrix a. Is there a way to do it directly...
mehr als 3 Jahre vor | 2 Antworten | 1
2
AntwortenFrage
Matlab and SPICE toolkit and parfor
I am using NASA's SPICE toolkit MICE for matlab. The relevant code is addpath(path_to_spice_src); addpath(path_to_spice_lib)...
mehr als 3 Jahre vor | 2 Antworten | 1
2
AntwortenFrage
An UndefinedFunction error thrown by parfor but not for
I have a script 'load_constants.m' that has: a = 1737400.0; main program: load_constants el = fce(); and t...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
parfor variable classification issue
I had the code as such (note the size of the map array is (1001,1001,3): map = zeros(i1max - i1min + 1,j1max - j1min + 1,3); ...
mehr als 3 Jahre vor | 2 Antworten | 0