100+ datasets found
  1. d

    HIRENASD Experimental Data - matlab format

    • catalog.data.gov
    • s.cnmilf.com
    • +3more
    Updated Apr 10, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Dashlink (2025). HIRENASD Experimental Data - matlab format [Dataset]. https://catalog.data.gov/dataset/hirenasd-experimental-data-matlab-format
    Explore at:
    Dataset updated
    Apr 10, 2025
    Dataset provided by
    Dashlink
    Description

    This resource contains the experimental data that was included in tecplot input files but in matlab files. dba1_cp has all the results is dimensioned (7,2) first dimension is 1-7 for each span station 2nd dimension is 1 for upper surface, 2 for lower surface. dba1_cp(ispan,isurf).x are the x/c locations at span station (ispan) and upper(isurf=1) or lower(isurf=2) dba1_cp(ispan,isurf).y are the eta locations at span station (ispan) and upper(isurf=1) or lower(isurf=2) dba1_cp(ispan,isurf).cp are the pressures at span station (ispan) and upper(isurf=1) or lower(isurf=2) Unsteady CP is dimensioned with 4 columns 1st column, real 2nd column, imaginary 3rd column, magnitude 4th column, phase, deg M,Re and other pertinent variables are included as variables and also included in casedata.M, etc

  2. R

    Matlab Dataset

    • universe.roboflow.com
    zip
    Updated Dec 21, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    matlab (2024). Matlab Dataset [Dataset]. https://universe.roboflow.com/matlab-nhbhb/matlab-jtnik
    Explore at:
    zipAvailable download formats
    Dataset updated
    Dec 21, 2024
    Dataset authored and provided by
    matlab
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Face Bounding Boxes
    Description

    Matlab

    ## Overview
    
    Matlab is a dataset for object detection tasks - it contains Face annotations for 220 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  3. d

    Efficient Matlab Programs

    • catalog.data.gov
    • datasets.ai
    • +2more
    Updated Aug 23, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Dashlink (2025). Efficient Matlab Programs [Dataset]. https://catalog.data.gov/dataset/efficient-matlab-programs
    Explore at:
    Dataset updated
    Aug 23, 2025
    Dataset provided by
    Dashlink
    Description

    Matlab has a reputation for running slowly. Here are some pointers on how to speed computations, to an often unexpected degree. Subjects currently covered: Matrix Coding Implicit Multithreading on a Multicore Machine Sparse Matrices Sub-Block Computation to Avoid Memory Overflow Matrix Coding - 1 Matlab documentation notes that efficient computation depends on using the matrix facilities, and that mathematically identical algorithms can have very different runtimes, but they are a bit coy about just what these differences are. A simple but telling example: The following is the core of the GD-CLS algorithm of Berry et.al., copied from fig. 1 of Shahnaz et.al, 2006, "Document clustering using nonnegative matrix factorization': for jj = 1:maxiter A = W'*W + lambda*eye(k); for ii = 1:n b = W'*V(:,ii); H(:,ii) = A \ b; end H = H .* (H>0); W = W .* (V*H') ./ (W*(H*H') + 1e-9); end Replacing the columwise update of H with a matrix update gives: for jj = 1:maxiter A = W'*W + lambda*eye(k); B = W'*V; H = A \ B; H = H .* (H>0); W = W .* (V*H') ./ (W*(H*H') + 1e-9); end These were tested on an 8049 x 8660 sparse matrix bag of words V (.0083 non-zeros), with W of size 8049 x 50, H 50 x 8660, maxiter = 50, lambda = 0.1, and identical initial W. They were run consecutivly, multithreaded on an 8-processor Sun server, starting at ~7:30PM. Tic-toc timing was recorded. Runtimes were respectivly 6586.2 and 70.5 seconds, a 93:1 difference. The maximum absolute pairwise difference between W matrix values was 6.6e-14. Similar speedups have been consistantly observed in other cases. In one algorithm, combining matrix operations with efficient use of the sparse matrix facilities gave a 3600:1 speedup. For speed alone, C-style iterative programming should be avoided wherever possible. In addition, when a couple lines of matrix code can substitute for an entire C-style function, program clarity is much improved. Matrix Coding - 2 Applied to integration, the speed gains are not so great, largely due to the time taken to set up the and deal with the boundaries. The anyomous function setup time is neglegable. I demonstrate on a simple uniform step linearly interpolated 1-D integration of cos() from 0 to pi, which should yield zero: tic; step = .00001; fun = @cos; start = 0; endit = pi; enda = floor((endit - start)/step)step + start; delta = (endit - enda)/step; intF = fun(start)/2; intF = intF + fun(endit)delta/2; intF = intF + fun(enda)(delta+1)/2; for ii = start+step:step:enda-step intF = intF + fun(ii); end intF = intFstep toc; intF = -2.910164109692914e-14 Elapsed time is 4.091038 seconds. Replacing the inner summation loop with the matrix equivalent speeds things up a bit: tic; step = .00001; fun = @cos; start = 0; endit = pi; enda = floor((endit - start)/step)*step + start; delta = (endit - enda)/step; intF = fun(start)/2; intF = intF + fun(endit)*delta/2; intF = intF + fun(enda)*(delta+1)/2; intF = intF + sum(fun(start+step:step:enda-step)); intF = intF*step toc; intF = -2.868419946011613e-14 Elapsed time is 0.141564 seconds. The core computation take

  4. u

    AWS-02-I CTD Data (MATLAB Format) [Flagg, C.]

    • data.ucar.edu
    • dataone.org
    • +1more
    matlab
    Updated Aug 1, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Charles N. Flagg; James H. Swift; Louis Codispoti (2025). AWS-02-I CTD Data (MATLAB Format) [Flagg, C.] [Dataset]. http://doi.org/10.5065/D6CF9N6S
    Explore at:
    matlabAvailable download formats
    Dataset updated
    Aug 1, 2025
    Authors
    Charles N. Flagg; James H. Swift; Louis Codispoti
    Time period covered
    Jul 15, 2002 - Aug 13, 2002
    Area covered
    Description

    This data set consists of Conductivity, Temperature, Depth (CTD) data in MATLAB Format from the 2002 Polar Star Mooring Cruise (AWS-02-I). These data are provided in a single mat-file (MATLAB) for the entire cruise.

  5. H

    StaVel MATLAB toolbox

    • dataverse.harvard.edu
    • search.dataone.org
    Updated May 26, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Giordano Teza (2023). StaVel MATLAB toolbox [Dataset]. http://doi.org/10.7910/DVN/9XV3K2
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    May 26, 2023
    Dataset provided by
    Harvard Dataverse
    Authors
    Giordano Teza
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    Component 1 of sofware related to the paper: Teza, G., Pesci, A., Meschis, M., 2023. A MATLAB toolbox for computation of velocity and strain rate field from GNSS coordinate time series. Annals of Geophysics, Revision submitted.

  6. p

    Waveform Database Software Package (WFDB) for MATLAB and Octave

    • physionet.org
    Updated Apr 5, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ikaro Silva; Benjamin Moody; George Moody (2021). Waveform Database Software Package (WFDB) for MATLAB and Octave [Dataset]. http://doi.org/10.13026/6zcz-e163
    Explore at:
    Dataset updated
    Apr 5, 2021
    Authors
    Ikaro Silva; Benjamin Moody; George Moody
    License

    https://www.gnu.org/licenses/gpl.htmlhttps://www.gnu.org/licenses/gpl.html

    Description

    Physiological waveforms - such as electrocardiograms (ECG), electroencephalograms (EEG), electromyograms (EMG) - are generated during the course of routine care. These signals contain information that can be used to understand underlying conditions of health. Effective processing and analysis of physiological data requires specialized software. The WaveForm DataBase (WFDB) Toolbox for MATLAB and Octave is a collection of over 30 functions and utilities that integrate PhysioNet's open-source applications and databases with the high-precision numerical computational and graphics environment of MATLAB and Octave.

  7. G

    Matlab Scripts and Sample Data Associated with Water Resources Research...

    • gdr.openei.org
    • data.openei.org
    • +3more
    code, data
    Updated Jul 18, 2015
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Matthew Becker; Thomas Coleman; Matthew Becker; Thomas Coleman (2015). Matlab Scripts and Sample Data Associated with Water Resources Research Article [Dataset]. http://doi.org/10.15121/1638712
    Explore at:
    code, dataAvailable download formats
    Dataset updated
    Jul 18, 2015
    Dataset provided by
    Office of Energy Efficiency and Renewable Energyhttp://energy.gov/eere
    California State University
    Geothermal Data Repository
    Authors
    Matthew Becker; Thomas Coleman; Matthew Becker; Thomas Coleman
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    Scripts and data acquired at the Mirror Lake Research Site, cited by the article submitted to Water Resources Research: Distributed Acoustic Sensing (DAS) as a Distributed Hydraulic Sensor in Fractured Bedrock M. W. Becker(1), T. I. Coleman(2), and C. C. Ciervo(1) 1 California State University, Long Beach, Geology Department, 1250 Bellflower Boulevard, Long Beach, California, 90840, USA. 2 Silixa LLC, 3102 W Broadway St, Suite A, Missoula MT 59808, USA. Corresponding author: Matthew W. Becker (matt.becker@csulb.edu).

  8. H

    MATLAB Online

    • hydroshare.org
    • search.dataone.org
    zip
    Updated Apr 7, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Anthony Castronova; Lisa Kempler (2025). MATLAB Online [Dataset]. https://www.hydroshare.org/resource/56d20d162e904deb8cc2f472f3dbb723
    Explore at:
    zip(0 bytes)Available download formats
    Dataset updated
    Apr 7, 2025
    Dataset provided by
    HydroShare
    Authors
    Anthony Castronova; Lisa Kempler
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    There are many MATLAB users in the Hydrology space. These scientists work as researchers and educators in academia and in agencies and institutes. Many of these institutions partner with CUAHSI and use their resources to share data and research. For data analysis and visualization, HydroShare provides integrations with Jupyter notebooks and other tools, via an ‘open with’ affordance.

    MATLAB Online provides access to MATLAB from any standard web browser wherever you have internet access. It is ideal for teaching, learning and convenient, lightweight access. With MATLAB Online, you can share your scripts, live scripts, and other MATLAB files with others directly. Additionally, you can publish your scripts and live scripts to the web as PDFs or HTML and share the URL with anyone.

    This web application enables the interactive exploration of MATLAB artifacts (such as Live Scripts) through a similar ‘open with’ affordance. When working with Live Scripts, users are presented with the option to open these artifacts in the Live Editor environment.

  9. d

    Introductory Exercises for Matlab and ArcGIS

    • search.dataone.org
    • hydroshare.org
    • +1more
    Updated Dec 5, 2021
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Christa Kelleher; Emily A Baker; Riley Sessanna (2021). Introductory Exercises for Matlab and ArcGIS [Dataset]. https://search.dataone.org/view/sha256%3Ad672a9989e452daad696b12a00c46426f29cfde1ccf811c658d369adb84cee08
    Explore at:
    Dataset updated
    Dec 5, 2021
    Dataset provided by
    Hydroshare
    Authors
    Christa Kelleher; Emily A Baker; Riley Sessanna
    Area covered
    Description

    These exercises are designed to introduce students to analyzing real-world datasets with Matlab (4 exercises) and ArcGIS (1 exercise). The activities all require students to watch a video and complete a task before class time, during which they would follow the guide to complete several different tasks. These tasks are specific to learning about Meadowbrook Creek, a first order urban stream in the Syracuse, NY area, but could easily be developed for other places and other types of datasets.

  10. R

    Class(matlab) Finalwork Dataset

    • universe.roboflow.com
    zip
    Updated Dec 3, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    masterlearning (2024). Class(matlab) Finalwork Dataset [Dataset]. https://universe.roboflow.com/masterlearning/class-matlab-finalwork
    Explore at:
    zipAvailable download formats
    Dataset updated
    Dec 3, 2024
    Dataset authored and provided by
    masterlearning
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Fabric Defect Bounding Boxes
    Description

    Class(matlab) Finalwork

    ## Overview
    
    Class(matlab) Finalwork is a dataset for object detection tasks - it contains Fabric Defect annotations for 482 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  11. d

    xsecModel.m: Matlab code to simulate equilibrium river cross-section

    • catalog.data.gov
    • data.usgs.gov
    • +2more
    Updated Sep 12, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    U.S. Geological Survey (2025). xsecModel.m: Matlab code to simulate equilibrium river cross-section [Dataset]. https://catalog.data.gov/dataset/xsecmodel-m-matlab-code-to-simulate-equilibrium-river-cross-section
    Explore at:
    Dataset updated
    Sep 12, 2025
    Dataset provided by
    United States Geological Surveyhttp://www.usgs.gov/
    Description

    Matlab code to simulate equilibrium geometry of selected cross-sections on the Lower American and Sacramento Rivers in California.

  12. f

    Supplement 1. Matlab computer code and data for analyses of the full model.

    • datasetcatalog.nlm.nih.gov
    • wiley.figshare.com
    Updated Aug 5, 2016
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Hall, Spencer R.; Duffy, Meghan A.; Ives, Anthony R.; Cáceres, Carla E. (2016). Supplement 1. Matlab computer code and data for analyses of the full model. [Dataset]. https://datasetcatalog.nlm.nih.gov/dataset?q=0001513999
    Explore at:
    Dataset updated
    Aug 5, 2016
    Authors
    Hall, Spencer R.; Duffy, Meghan A.; Ives, Anthony R.; Cáceres, Carla E.
    Description

    File List Duffy_et_al.m Metschfig.m MetschLLfunct.m simanneal.m UnsmoothedMetschDynamics.txt Description Duffy_et_al.m: main Matlab file; calls Metschfig.m, MetschLLfunct.m, and simanneal.m Together, these files provide the code for analyses of the full model given by Eq. 1. Matlab is produced by MathWorks (2007, MATLAB Version 7, MathWorks, Natick, Massachusetts, USA). UnsmoothedMetschDynamics.txt: data file called by Duffy_et_al.m; this file contains data on lake/epidemic identity (column 1), Julian day (column 2), infection prevalence (column 3), D. dentifera density (column 4), susceptible density (column 5), infected density (column 6), weighted temperature (column 7), and epilimnion temperature (column 8).

  13. f

    MATLAB Figure Files

    • datasetcatalog.nlm.nih.gov
    • figshare.com
    Updated Jul 22, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Carreon, Anthony (2023). MATLAB Figure Files [Dataset]. https://datasetcatalog.nlm.nih.gov/dataset?q=0001003251
    Explore at:
    Dataset updated
    Jul 22, 2023
    Authors
    Carreon, Anthony
    Description

    The .zip file contains data from Carreon A. et. al. "Simulating Radiative Heat Transfer...", stored in MATLAB figure files (.fig extension) with file names corresponding to the figures in the paper.

  14. D

    Matlab Code and Data for: Data-driven geometric parameter optimization for...

    • darus.uni-stuttgart.de
    Updated Mar 11, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Lennart Duvenbeck; Cedric Riethmüller; Christian Rohde (2025). Matlab Code and Data for: Data-driven geometric parameter optimization for PD-GMRES [Dataset]. http://doi.org/10.18419/DARUS-4812
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Mar 11, 2025
    Dataset provided by
    DaRUS
    Authors
    Lennart Duvenbeck; Cedric Riethmüller; Christian Rohde
    License

    https://darus.uni-stuttgart.de/api/datasets/:persistentId/versions/1.0/customlicense?persistentId=doi:10.18419/DARUS-4812https://darus.uni-stuttgart.de/api/datasets/:persistentId/versions/1.0/customlicense?persistentId=doi:10.18419/DARUS-4812

    Dataset funded by
    DFG
    Description

    This repository contains the Matlab code and generated data for the manuscript "Data-driven geometric parameter optimization for PD-GMRES" which uses a quadtree approach to optimize parameters for the iterative solver PD-GMRES. It includes hardware specific data to allow for reproducibity of our results. Our calculations were performed using MATLAB R2019a and should be reproducible up to and including version R2022a. A change in version R2022b leads to different numerical behavior. However, the code does run on newer Matlab versions. Further information is contained in the README.

  15. B

    Matlab Code

    • borealisdata.ca
    • search.dataone.org
    Updated Apr 9, 2020
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Paul Godin (2020). Matlab Code [Dataset]. http://doi.org/10.5683/SP2/18ZI43
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Apr 9, 2020
    Dataset provided by
    Borealis
    Authors
    Paul Godin
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    Matlab code to ratio images

  16. b

    JoVE article Matlab software - Datasets - data.bris

    • data.bris.ac.uk
    Updated Feb 10, 2017
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2017). JoVE article Matlab software - Datasets - data.bris [Dataset]. https://data.bris.ac.uk/data/dataset/1bjytiabmtwqx2kodgbzkwso0k
    Explore at:
    Dataset updated
    Feb 10, 2017
    Description

    The Matlab scripts will compute parametric maps from Bruker MR images as described in the JoVE paper published in 2017 Complete download (zip, 465.7 KiB)

  17. F

    Matlab/Simulink Files: Mathematical Modeling of Thyroid Homeostasis:...

    • data.uni-hannover.de
    • service.tib.eu
    zip
    Updated Nov 11, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Institut für Regelungstechnik (2022). Matlab/Simulink Files: Mathematical Modeling of Thyroid Homeostasis: Implications for the AHDS [Dataset]. https://data.uni-hannover.de/dataset/matlab-simulink-files-mathematical-modeling-of-thyroid-homeostasis-implications-for-the-ahds
    Explore at:
    zipAvailable download formats
    Dataset updated
    Nov 11, 2022
    Dataset authored and provided by
    Institut für Regelungstechnik
    License

    Attribution 3.0 (CC BY 3.0)https://creativecommons.org/licenses/by/3.0/
    License information was derived automatically

    Description

    These Matlab/Simulink Files were used to generate the plots for the submitted paper „Mathematical Modeling and Simulation of Thyroid Homeostasis: Implications for the Allan-Herndon-Dudley-Syndrome“.

    To reproduce the plots, please execute the files in the following order: 1: MM_Parameters_Healthy.m 2: MM_Healthy.slx 3: MM_Parameters_ADHS.m 4: MM_AHDS.slx 5: MM_Plot_Results and analogously regarding the linear case.

  18. m

    MATLAB Code to Estimate Logit-Mixed Logit Model (Preference space, fixed and...

    • data.mendeley.com
    Updated Aug 6, 2019
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Prateek Bansal (2019). MATLAB Code to Estimate Logit-Mixed Logit Model (Preference space, fixed and random parameters) [Dataset]. http://doi.org/10.17632/ttvm4cr25s.1
    Explore at:
    Dataset updated
    Aug 6, 2019
    Authors
    Prateek Bansal
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    This is a sample MATLAB code to estimate Logit-Mixed Logit Model in preference space. The example is provided for a model with 2 fixed parameters, 2 random parameters, and 3 alternatives. This code is an extension of the original code by Kenneth Train which considers all utility parameters to be random and the model is estimated in willingness-to-pay space.

    This code uses a simuated data. data_generation.m generate this data and give test.csv and test_save.mat as outputs.

    In the attached folder, main_test.m is the main file which takes test.csv and test_save.mat as inputs. The default setting is "no bootstrapping" because it would take some time to run. You can change WantBoot=1 to get the bootstrapped standard errors. You can increase the number of repetitions (NReps) to 50 to get stable standard error estimates.

    To get the histogram of random coefficient 1, use bar(MidEst(1,:),FreqEst(1,:)).

    Please cite the following papers if you use this code in any form:

    Bansal, P., Daziano, R. A., & Achtnicht, M. (2018). Extending the logit-mixed logit model for a combination of random and fixed parameters. Journal of choice modelling, 27, 88-96.

    Bansal, P., Daziano, R. A., & Achtnicht, M. (2018). Comparison of parametric and semiparametric representations of unobserved preference heterogeneity in logit models. Journal of choice modelling, 27, 97-113.

  19. q

    Export bone healing simulation data for Matlab...

    • data.researchdatafinder.qut.edu.au
    Updated Jun 6, 2018
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2018). Export bone healing simulation data for Matlab... [Dataset]. https://data.researchdatafinder.qut.edu.au/dataset/abaqus-finite-element/resource/49105b75-533e-45cd-bede-457a917559e9
    Explore at:
    Dataset updated
    Jun 6, 2018
    License

    http://researchdatafinder.qut.edu.au/display/n4066http://researchdatafinder.qut.edu.au/display/n4066

    Description

    Exports required model results as text files, for reading into Matlab. Must be run from command line (after loading Abaqus module) thus: abaqus python ExportModelEndState02a.py Output databases... QUT Research Data Respository Dataset Resource available for download

  20. T

    MATLAB Files For Image Replication

    • dataverse.tdl.org
    Updated Mar 26, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Graeson Griffin; Graeson Griffin (2025). MATLAB Files For Image Replication [Dataset]. http://doi.org/10.18738/T8/FKYUS5
    Explore at:
    text/x-matlab(13120), docx(17688), text/x-matlab(1734), text/x-matlab(17145), text/x-matlab(719), text/x-matlab(1136), text/x-matlab(427), application/matlab-mat(3409)Available download formats
    Dataset updated
    Mar 26, 2025
    Dataset provided by
    Texas Data Repository
    Authors
    Graeson Griffin; Graeson Griffin
    License

    CC0 1.0 Universal Public Domain Dedicationhttps://creativecommons.org/publicdomain/zero/1.0/
    License information was derived automatically

    Description

    This dataset contains MATLAB .m files for replication of images and visualization of data. See READ ME file. For image processing techniques used on the raw video data from the experiments, see https://github.com/ArcGriffin/Video-Data-Processing-CASPER-/tree/main.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Dashlink (2025). HIRENASD Experimental Data - matlab format [Dataset]. https://catalog.data.gov/dataset/hirenasd-experimental-data-matlab-format

HIRENASD Experimental Data - matlab format

Explore at:
Dataset updated
Apr 10, 2025
Dataset provided by
Dashlink
Description

This resource contains the experimental data that was included in tecplot input files but in matlab files. dba1_cp has all the results is dimensioned (7,2) first dimension is 1-7 for each span station 2nd dimension is 1 for upper surface, 2 for lower surface. dba1_cp(ispan,isurf).x are the x/c locations at span station (ispan) and upper(isurf=1) or lower(isurf=2) dba1_cp(ispan,isurf).y are the eta locations at span station (ispan) and upper(isurf=1) or lower(isurf=2) dba1_cp(ispan,isurf).cp are the pressures at span station (ispan) and upper(isurf=1) or lower(isurf=2) Unsteady CP is dimensioned with 4 columns 1st column, real 2nd column, imaginary 3rd column, magnitude 4th column, phase, deg M,Re and other pertinent variables are included as variables and also included in casedata.M, etc

Search
Clear search
Close search
Google apps
Main menu