Driving Efficiency with MATLAB and Simulink. Centurion Lake Hotel 25 May 2017

Size: px
Start display at page:

Download "Driving Efficiency with MATLAB and Simulink. Centurion Lake Hotel 25 May 2017"

Transcription

1 Driving Efficiency with MATLAB and Simulink Centurion Lake Hotel 25 May 2017

2 Welcome Danielle Winter Application Engineer Praneet Kala Application Engineer Please put cell phones on silent Please fill in the evaluation forms Driving Efficiency with MATLAB and Simulink 2

3 Opti-Num Solutions and MathWorks Sales Development Opti-Num Solutions Application Engineering Consulting Training Driving Efficiency with MATLAB and Simulink 3

4 Why Are We Here? How proficient are you in MATLAB and Simulink? Driving Efficiency with MATLAB and Simulink 4

5 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Q&A 11:30 12:00 Driving Efficiency with MATLAB and Simulink 5

6 Efficiency Updates in MATLAB Increased performance New graphics system Editing and running code New data types Working with Big Data Language enhancements Toolbox enhancements Driving Efficiency with MATLAB and Simulink 6

7 Increased Performance Redesigned MATLAB execution engine All MATLAB code is now JIT compiled Average performance improvement of 40% Driving Efficiency with MATLAB and Simulink 7

8 New Graphics System Easier plot customization with objects Graphics objects with graphics handles Support dot-notation to access and change properties Object-specific properties Updates and Enhancements Automatic update of datetime tick labels Dynamic legends Plot with categoricals Multiple colormaps per figure Driving Efficiency with MATLAB and Simulink 8

9 Editing and Running MATLAB Code Pre-16a Plain-text editing Output goes to Command Window Multiple figure windows appear Equations, images, and hyperlinks only appear if published Driving Efficiency with MATLAB and Simulink 9

10 Live Editor Run code, present, share, and collaborate using interactive documents Rich text formatting Interactive plot customization with code generation Interactive equation editing Insert images Hyperlinking See results together with code Side-by-side or inline views Save directly to PDF or HTML Driving Efficiency with MATLAB and Simulink 10

11 Importing and Exporting Data Import improvements Improved performance Improved format detection in readtable and datastore Advanced control over import with detectimportoptions Import Tool Datastore Importing multiple files Text, spreadsheet, images, and custom Access online data RESTful, JSON, HTTP, CSV, text, and image data Driving Efficiency with MATLAB and Simulink 11

12 Automatic MATLAB Code Generation Customized data import Recreate customized plots Directly from figures Within Live Editor Plot Gallery Variable Editor actions Apps in Toolboxes generate code for more complex workflows Driving Efficiency with MATLAB and Simulink 12

13 Data Types in MATLAB Numeri c datetime duration double, single, logical Heterogeneou s categorical calendarduration timetable str str str structure Text cell table str c h char {c h} cell string str string tall Driving Efficiency with MATLAB and Simulink 13

14 Tables For mixed-type tabular data Holds both data and metadata Flexible indexing Built-in functionality (merge, sort, etc.) Database-like functionality Join Stack / Unstack Driving Efficiency with MATLAB and Simulink 14

15 Date and Time Arrays datetime for representing a point in time duration, calendarduration for representing elapsed time Same data type for computation and display Add, subtract, sort, compare, and plot Customize display formats Support for time zones and leap seconds Accounts for daylight saving time Driving Efficiency with MATLAB and Simulink 15

16 Timetables Manage time-stamped tabular data with time-based indexing Use dedicated functions to manage timetables Reorganize data Evenly space data by time Synchronise multiple data sets Driving Efficiency with MATLAB and Simulink 16

17 Strings Manipulate, compare, and store text data efficiently Simplified text manipulation functions Performance improvement Up to 50x faster Up to 2x memory savings 2/22/singing-the-praises-of-strings/ String concatenation Previously Matrix dimensions must agree for character array addition Now >> "image" + (1:3) + ".png" 1 3 string array "image1.png" "image2.png "image3.png Text manipulation if ~isempty(strfind(textdata, "Dog")) if contains(textdata,"dog") Driving Efficiency with MATLAB and Simulink 17

18 Working with Big Data just got easier in MATLAB. Driving Efficiency with MATLAB and Simulink

19 Tall Arrays Applicable when: Data is columnar with many rows Overall data size is too big to fit into memory Operations are mathematical/statistical in nature Machine Memory Statistical and machine learning applications Hundreds of functions supported in MATLAB and Statistics and Machine Learning Toolbox Tall Data Driving Efficiency with MATLAB and Simulink 19

20 Using Tall Arrays Run in parallel on compute clusters MATLAB Distributed Computing Server /products/distriben.html Local disk Shared folders Databases Compute Clusters Spark + Hadoop Tall arrays Built into base MATLAB 100 s of functions supported Run in parallel Parallel Computing Toolbox Run in parallel on Spark clusters MATLAB Distributed Computing Server Deploy MATLAB applications as standalone applications on Spark clusters MATLAB Compiler Driving Efficiency with MATLAB and Simulink 20

21 Programming Flexibility Functions in scripts Define local functions in scripts for improved code reuse and readability Property validation for classes Easily control a property's size, class, and value Driving Efficiency with MATLAB and Simulink 21

22 Expressing Math More Naturally with Implicit Expansion 1986: % Remove mean of each column: [nr,nc] = size(a) A = A ones(nr,1)*mean(a) 1996: A = A repmat(mean(a),nr,1) 2006: A = bsxfun(@minus,a,mean(a)) 2016: A = A mean(a) 24/matlab-arithmetic-expands-in-r2016b/ Driving Efficiency with MATLAB and Simulink 22

23 Data Preprocessing Text manipulation functions contains, endswith, and others Find, fill, and remove missing data *missing functions Options to ignore NaNs with cumulative statistic functions Smooth noisy data with filtering or local regression using smoothdata Deal with outliers easily using isoutlier and filloutliers Driving Efficiency with MATLAB and Simulink 23

24 Analyse Data Split-Apply-Combine Workflow findgroups splits the data into groups splitapply applies a function to each group, and combines the results Apply functions with tables and timetables using varfun Driving Efficiency with MATLAB and Simulink 24

25 Statistics and Machine Learning Toolbox Easy-to-use Apps Classification Learner App Regression Learner App 1-click parallel computing Big data using tall arrays C code generation for predictive models (requires MATLAB Coder) Driving Efficiency with MATLAB and Simulink 25

26 Deep Learning with Neural Network Toolbox Import forward-looking models from Caffe Extract features from a trained network Construct convolutional neural network (CNN) architecture Train and test using CPUs or multiple GPUs Perform transfer learning with AlexNet, VGG-16, VGG-19 Driving Efficiency with MATLAB and Simulink 26

27 Parallel Computing Toolbox tall array support for big data Measure data sent to workers using ticbytes and tocbytes Cloud offerings with K80-equipped GPUs Send data to client using DataQueue and PollableDataQueue Train a single deep learning network with multiple CPUs or multiple GPUs Driving Efficiency with MATLAB and Simulink 27

28 Other Toolbox Enhancement Highlights Optimization Toolbox Mixed Integer Linear Programming Database Toolbox Analyze large data using a Database Datastore and tall table capabilities Retrieve graph data from Neo4j Graph Database Econometrics Toolbox Bayesian Linear Regression Vector Autoregressive Models (VAR) with Exogenous Inputs (VARX) MATLAB Report Generator Document Object Model (DOM) API for creating customized reports Signal Processing Toolbox Signal Analyser App for spectral and time domain analysis of signals Driving Efficiency with MATLAB and Simulink 28

29 Efficiency Updates in MATLAB Increased performance New graphics system Editing and running code New data types Working with Big Data Language enhancements Toolbox enhancements Driving Efficiency with MATLAB and Simulink 29

30 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Q&A 11:30 12:00 Driving Efficiency with MATLAB and Simulink 30

31 Simulation Data Inspector Inspect and compare simulation data Compare simulation outputs for different inputs when testing your model Compare simulation outputs and generated code outputs New Interface for Scopes - video Driving Efficiency with MATLAB and Simulink 31

32 Dashboard Block Library Tune and test your simulations with graphical controls and displays New library of controls and displays, including knobs, switches, and gauges Place blocks directly within the Simulink Editor Provide a front-end user interface to the entire model Dashboard Block Library - Video Driving Efficiency with MATLAB and Simulink 32

33 >> sldemo_fuelsys Driving Efficiency with MATLAB and Simulink 33

34 New Scope Interface Control model from scope Trigger repeating signals View and debug signals with cursors and measurements Auto scaling and data range tools New Interface for Scopes - video Driving Efficiency with MATLAB and Simulink 34

35 Quick Insert Feature Add blocks to models without using Simulink Library Browser Click in white space and start typing Lists all possible blocks and the location of block Driving Efficiency with MATLAB and Simulink 35

36 Property Inspector Edit parameters of block using a single interface Always open and docked Ctrl+Shift+i Property Inspector - video Driving Efficiency with MATLAB and Simulink 36

37 Initialize and Terminate Function Blocks Model dynamic start-up and shutdown behaviour Respond to events by changing states Generate code from these functions Initialize and Terminate Functions - video Driving Efficiency with MATLAB and Simulink 37

38 General Simulink Editor Enhancements Reduced Bus Wiring Automatic Port Creation Inport File Streaming Dashboard Block Connection Indicators One Click Display Driving Efficiency with MATLAB and Simulink 38

39 Parallel Computing Toolbox and Simulink Directly run multiple parallel simulations from the parsim command Iteratively change various parameter values in your model Common use cases for this approach include: Model testing Design of experiments Monte Carlo runs Sensitivity and robustness analysis. Custom code required is reduced significantly compared to sim command Driving Efficiency with MATLAB and Simulink 39

40 Road-Suspension Interaction in 3 DOF >> edit sldemo_parsim_paramsweep_suspn The model simulates vehicle dynamics based on the interaction between road and suspension for different road profiles. The Signal Builder block stores measured road profile data for the left and right tires as different test groups. In this Monte Carlo study, you inspect the impact of the front suspension coefficients on the vehicle dynamics. You run multiple simulations, each with a different coefficient value. Calculate the sweep values for the coefficient as percentages of the design value ranging from 5% to 95% in increments of 10%. Driving Efficiency with MATLAB and Simulink 40

41 New Toolboxes Automated Driving System Toolbox Simscape Fluids Robotics System Toolbox Audio System Toolbox Vision HDL Toolbox Simulink Test Risk Management Toolbox Antenna Toolbox Phased Array System Toolbox WLAN System Toolbox LTE System Toolbox 5G library for LTE available Driving Efficiency with MATLAB and Simulink 41

42 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Q&A 11:30 12:00 Driving Efficiency with MATLAB and Simulink 42

43 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Q&A 11:30 12:00 Driving Efficiency with MATLAB and Simulink 43

44 Demonstration Importing data into MATLAB Automatic MATLAB code generation Tables Datetimes Strings Categorical data Data pre-processing and analysis Debugging code 44

45 Code Debugging Set and remove breakpoints Enter debug mode Interactively view and change variables Resume program execution Driving Efficiency with MATLAB and Simulink 45

46 External Interfaces Calling Libraries Written in Another Language From MATLAB Python C/C++ Fortran Java COM components and ActiveX controls RESTful, HTTP, and WSDL web services Calling MATLAB from Another Language Java Python C/C++ Fortran COM Automation server Driving Efficiency with MATLAB and Simulink

47 Test Frameworks How would you check that this data is the same? Driving Efficiency with MATLAB and Simulink 47

48 Test Frameworks MATLAB Unit Testing Framework Test your code early and often Script / function / class based testing Works with continuous integration servers Automatic reporting Mocking framework Performance Testing Framework Time MATLAB code automatically Track performance over time Driving Efficiency with MATLAB and Simulink 48

49 Source Control Integration Manage your code from within the MATLAB Desktop GIT and Subversion integration in Current Folder browser Use Comparison Tool to view and merge changes between revisions Driving Efficiency with MATLAB and Simulink 49

50 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Q&A 11:30 12:00 Driving Efficiency with MATLAB and Simulink 50

51 Simulink Driving Efficiency? Are you using the tools effectively? Are all your files neatly stored in one folder?? Is your model and configuration data stored in one place? Do you have different variations of models to be tested??? Are you over the budget due to expensive hardware? Driving Efficiency with MATLAB and Simulink 51

52 Simulink Projects Create new project from Home tab Organise all project related models and data in one place Airframe Example Metadata Shortcuts Folders Interface Start up and Shutdown scripts Source Control Integration Simulink Projects - video and discovery page Driving Efficiency with MATLAB and Simulink 52

53 Simulink Project and Dependency Analysis Simulink Projects Model Management Driving Efficiency with MATLAB and Simulink 53

54 Data Dictionary Get model data from a different source other than the workspace Keep all configuration data and design data in one place Can reference each model to particular Data Dictionary Built in change tracking Data Dictionary - Documentation Driving Efficiency with MATLAB and Simulink 54

55 Model References Develop referenced model independently Reference a model multiple times without making redundant copies. Multiple models can reference a single model. The referenced model is not loaded until it is needed (Incremental Loading) Speeds up model load times. Model Referencing - Documentation Driving Efficiency with MATLAB and Simulink 55

56 Variants add/copy variant Different variations of model in one model Useful for switching components between simulations One variant is always active For code generation only the active variant is compiled Variants - Discovery Page Driving Efficiency with MATLAB and Simulink 56

57 Simulink Project Upgrade Easily upgrade all your models in your project to a new version Upgrade to latest release using a simple workflow Can apply all fixes automatically when possible Upgrade all model hierarchies in the project at once Automatically produces a report Simulink Project Upgrade - Documentation Driving Efficiency with MATLAB and Simulink 57

58 Recap Efficiency Updates Simulink Projects Data Dictionaries Model References Variants Simulink Project Upgrade Driving Efficiency with MATLAB and Simulink 58

59 Hardware: Breadth and Depth Data & RF Embedded Imaging Specialty Standards Driving Efficiency with MATLAB and Simulink 59

60 Hardware: Up and Running Fast Over 90 Hardware Support Packages Installs both the code and the drivers needed On-Line Hardware Catalog Integrated into Add-On Explorer Smoother Installation Process Driving Efficiency with MATLAB and Simulink 60

61 Hardware Support Raspberry Pi, Arduino, BeagleBone, Lego EV3 Webcams Android and ios Sensors Log data from iphone and Android device sensors to the cloud with MATLAB Mobile locally on the phone Communicate with Raspberry Pi 3 and Raspberry Pi Sense HAT hardware Driving Efficiency with MATLAB and Simulink 61

62 IoT - ThingSpeak Collect data from internet-connected sensors and run MATLAB analytics on the cloud using functions from: Statistics and Machine Learning Toolbox Signal Processing Toolbox Curve Fitting Toolbox Mapping Toolbox Driving Efficiency with MATLAB and Simulink 62

63 Why Update? benefits, keeping up with trends, maximise value Maximise value Take advantage of features you requested Increase workflow efficiency Build confidence in your designs Save time by upgrading regularly Driving Efficiency with MATLAB and Simulink 63

64 Agenda Efficiency Updates in MATLAB 09:00 09:40 Efficiency Updates in Simulink 09:40 10:00 Tea Break 10:00 10:30 Driving Efficiency in MATLAB 10:30 11:10 Driving Efficiency in Simulink 11:10 11:30 Recap and Questions and Answers 11:30 12:00 Driving Efficiency with MATLAB and Simulink 64

65 Why Are We Here? How proficient can you be in MATLAB and Simulink? Driving Efficiency with MATLAB and Simulink 65

66 Opti-Num Solutions philosophy Walking the journey with our clients Focus on the business problem Passionate about data, technology and the development of creative solutions to practical problems. Driving Efficiency with MATLAB and Simulink 66

67 Opti-Num Solutions philosophy Products Get the tools you need Training Learn how to use them Consulting Let us accelerate your development Driving Efficiency with MATLAB and Simulink 67

68 Get the tools you need Products Training Maximise value Take advantage of features you requested Increase workflow efficiency Build confidence in your designs Save time by upgrading regularly Consulting Two releases annually Access to technical support Driving Efficiency with MATLAB and Simulink 68

69 Learn how to use them Products Training Consulting See all training courses Driving Efficiency with MATLAB and Simulink 69

70 Training by Learning Path Products Tailored learning for your knowledge area and application Computational Finance Data Analytics Image Processing and Computer Vision Training Programming and Application Development Consulting Driving Efficiency with MATLAB and Simulink 70

71 Let us accelerate your development Products Training Partner with customers to combine domain knowledge with tools expertise Code reviews Model-Based Design projects Knowledge transfer Consulting Flexible business models Ongoing relationships Driving Efficiency with MATLAB and Simulink 71

72 OPTI-NUM solutions Consulting Services MTN Zone product discount strategy application (ongoing) & Traffic modelling for cell congestion analysis Capital adequacy projection model and macro-economic factor model Operational process monitoring application Short term load forecasting MATLAB Ramp-Up Consulting Assistance for Fault Prediction Analysis Rand Merchant Bank, Credit Risk Property development risk model (ongoing) Modelling, software and hardware-in-the-loop simulation of a mechanised air defence system Power generation dispatch modelling, simulation and optimization (ongoing) Portfolio optimisation framework design and implementation Data Acquisition Toolbox support for Keithley and Advantech data acquisition hardware Research, design and implementation of a framework and algorithm for a human biometrics machine learning project Driving Efficiency with MATLAB and Simulink 72

73 Our Business Model Products Training A staggered code development and deployment approach allowed benefits to be realised well before the end of the project, with clear, comprehensive documentation ensuring swift adoption of the new functionality.. Consulting - D Groenewald, Anglo American Platinum Driving Efficiency with MATLAB and Simulink 73

74 Next Steps MathWorks website pages MathWorks Discovery Page MathWorks Solutions MATLAB updates Simulink updates Get support for your trial Opti-Num Website Training learning paths Please fill in the feedback form Driving Efficiency with MATLAB and Simulink 74

75 Thank You for Attending Questions & Answers Driving Efficiency with MATLAB and Simulink 75

What s New in MATLAB May 16, 2017

What s New in MATLAB May 16, 2017 What s New in MATLAB May 16, 2017 2017 The MathWorks, Inc. 1 Agenda MATLAB Foundation Working with Data Building & Sharing MATLAB Applications Application Specific Enhancements Summary and Wrap-up 2 Agenda

More information

What s New MATLAB and Simulink

What s New MATLAB and Simulink What s New MATLAB and Simulink Ascension Vizinho-Coutry Application Engineer Manager MathWorks Ascension.Vizinho-Coutry@mathworks.fr Daniel Martins Application Engineer MathWorks Daniel.Martins@mathworks.fr

More information

What s New in MATLAB and Simulink

What s New in MATLAB and Simulink What s New in MATLAB Simulink Fabrizio Sara 2015 The MathWorks, Inc. 1 Engineers scientists 2 Engineers scientists Develop algorithms Analyze data write MATLAB code. 3 Engineers scientists deploy algorithms

More information

What s New in MATLAB and Simulink

What s New in MATLAB and Simulink What s New in MATLAB Simulink Selmane Sekkai - Cynthia Cudicini Application Engineering selmane.sekkai@mathworks.fr - cynthia.cudicini@mathworks.fr 1 Analysis Visualization Modeling Simulation Testing

More information

What s New in MATLAB and Simulink Young Joon Lee Principal Application Engineer

What s New in MATLAB and Simulink Young Joon Lee Principal Application Engineer What s New in MATLAB Simulink Young Joon Lee Principal Application Engineer 2016 The MathWorks, Inc. 1 Engineers scientists 2 Engineers scientists Develop algorithms Analyze data write MATLAB code. 3 Engineers

More information

What s New in MATLAB and Simulink The MathWorks, Inc. 1

What s New in MATLAB and Simulink The MathWorks, Inc. 1 What s New in MATLAB Simulink 2015 The MathWorks, Inc. 1 Engineers scientists 2 Engineers scientists Develop algorithms Analyze data write MATLAB code. 3 Engineers scientists deploy algorithms applications

More information

What's New in MATLAB for Engineering Data Analytics?

What's New in MATLAB for Engineering Data Analytics? What's New in MATLAB for Engineering Data Analytics? Will Wilson Application Engineer MathWorks, Inc. 2017 The MathWorks, Inc. 1 Agenda Data Types Tall Arrays for Big Data Machine Learning (for Everyone)

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 What s New in Release 2015a and 2014b Young Joon Lee Principal Application Engineer 2015 The MathWorks, Inc. 2 Agenda New Features Graphics and Data Design Performance Design

More information

Scaling MATLAB. for Your Organisation and Beyond. Rory Adams The MathWorks, Inc. 1

Scaling MATLAB. for Your Organisation and Beyond. Rory Adams The MathWorks, Inc. 1 Scaling MATLAB for Your Organisation and Beyond Rory Adams 2015 The MathWorks, Inc. 1 MATLAB at Scale Front-end scaling Scale with increasing access requests Back-end scaling Scale with increasing computational

More information

What s New in MATLAB and Simulink

What s New in MATLAB and Simulink What s New in MATLAB Simulink Mohamed Anas Stephan van Beek 2015 The MathWorks, Inc. 1 ASML Develops Virtual Metrology Technology for Semiconductor Manufacturing with Machine Learning Rabobank Develops

More information

What s New in MATLAB and Simulink Prashant Rao Technical Manager MathWorks India

What s New in MATLAB and Simulink Prashant Rao Technical Manager MathWorks India What s New in MATLAB and Simulink Prashant Rao Technical Manager MathWorks India 2013 The MathWorks, Inc. 1 MathWorks Product Overview 2 Core MathWorks Products The leading environment for technical computing

More information

Integrate MATLAB Analytics into Enterprise Applications

Integrate MATLAB Analytics into Enterprise Applications Integrate Analytics into Enterprise Applications Aurélie Urbain MathWorks Consulting Services 2015 The MathWorks, Inc. 1 Data Analytics Workflow Data Acquisition Data Analytics Analytics Integration Business

More information

What s New in MATLAB & Simulink. Prashant Rao Technical Manager MathWorks India

What s New in MATLAB & Simulink. Prashant Rao Technical Manager MathWorks India What s New in MATLAB & Simulink Prashant Rao Technical Manager MathWorks India Agenda Flashback Key Areas of Focus from 2013 Key Areas of Focus & What s New in 2013b/2014a MATLAB product family Simulink

More information

Advanced Software Development with MATLAB

Advanced Software Development with MATLAB Advanced Software Development with MATLAB From research and prototype to production 2017 The MathWorks, Inc. 1 What Are Your Software Development Concerns? Accuracy Compatibility Cost Developer Expertise

More information

Tackling Big Data Using MATLAB

Tackling Big Data Using MATLAB Tackling Big Data Using MATLAB Alka Nair Application Engineer 2015 The MathWorks, Inc. 1 Building Machine Learning Models with Big Data Access Preprocess, Exploration & Model Development Scale up & Integrate

More information

MATLAB. Senior Application Engineer The MathWorks Korea The MathWorks, Inc. 2

MATLAB. Senior Application Engineer The MathWorks Korea The MathWorks, Inc. 2 1 Senior Application Engineer The MathWorks Korea 2017 The MathWorks, Inc. 2 Data Analytics Workflow Business Systems Smart Connected Systems Data Acquisition Engineering, Scientific, and Field Business

More information

Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer

Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer 2018 The MathWorks, Inc. 1 Practical Application of Parallel Computing Why parallel computing? Need faster

More information

System Requirements & Platform Availability by Product for R2016b

System Requirements & Platform Availability by Product for R2016b & Platform Availability by Product for R2016b View general system requirements. Product Aerospace Blockset Requires Aerospace Control recommended Aerospace Antenna RF recommended Phased Array recommended

More information

What s New for MATLAB David Willingham

What s New for MATLAB David Willingham What s New for MATLAB David Willingham 2015 The MathWorks, Inc. 1 MATLAB Execution Engine Redesigned execution engine runs MATLAB code faster All MATLAB code is now JIT compiled A platform for future improvements

More information

Integrate MATLAB Analytics into Enterprise Applications

Integrate MATLAB Analytics into Enterprise Applications Integrate Analytics into Enterprise Applications Dr. Roland Michaely 2015 The MathWorks, Inc. 1 Data Analytics Workflow Access and Explore Data Preprocess Data Develop Predictive Models Integrate Analytics

More information

Integrate MATLAB Analytics into Enterprise Applications

Integrate MATLAB Analytics into Enterprise Applications Integrate Analytics into Enterprise Applications Lyamine Hedjazi 2015 The MathWorks, Inc. 1 Data Analytics Workflow Preprocessing Data Business Systems Build Algorithms Smart Connected Systems Take Decisions

More information

Parallel and Distributed Computing with MATLAB The MathWorks, Inc. 1

Parallel and Distributed Computing with MATLAB The MathWorks, Inc. 1 Parallel and Distributed Computing with MATLAB 2018 The MathWorks, Inc. 1 Practical Application of Parallel Computing Why parallel computing? Need faster insight on more complex problems with larger datasets

More information

Analyzing Fleet Data with MATLAB and Spark

Analyzing Fleet Data with MATLAB and Spark Analyzing Fleet Data with MATLAB and Spark Christoph Stockhammer 2018 The MathWorks, Inc. 1 What does Fleet mean? A Fleet is any group of things that can generate data and that you would like to look at

More information

MathWorks Products and Prices North America January 2018

MathWorks Products and Prices North America January 2018 MATLAB Product Family page 1 of 5 MATLAB 1 2,150 8,600 Parallel Computing Toolbox 1,000 4,000 Math and Optimization Symbolic Math Toolbox 1,000 4,000 Partial Differential Equation Toolbox 1,000 4,000 Statistics

More information

What s New in Simulink Release R2016a and R2016b

What s New in Simulink Release R2016a and R2016b What s New in Simulink Release R2016a and R2016b Mark Walker 2015 The MathWorks, Inc. 1 What s New in Simulink R2016a/b 2 What s New in Simulink R2016a/b 3 Our Objectives with Simulink R2016b Provide immediate

More information

MathWorks Products and Prices Euro Academic January 2018

MathWorks Products and Prices Euro Academic January 2018 MATLAB Product Family Academic pricing is reserved for noncommercial use by degree-granting institutions in support of on-campus classroom instruction and academic research. Refer to /academia for complete

More information

Sharing and Deploying MATLAB Programs Sundar Umamaheshwaran Amit Doshi Application Engineer-Technical Computing

Sharing and Deploying MATLAB Programs Sundar Umamaheshwaran Amit Doshi Application Engineer-Technical Computing Sharing and Deploying Programs Sundar Umamaheshwaran Amit Doshi Application Engineer-Technical Computing 2016 The MathWorks, Inc. 1 Summary: Data Analytics Workflow Business Systems Smart Connected Systems

More information

Integrating Advanced Analytics with Big Data

Integrating Advanced Analytics with Big Data Integrating Advanced Analytics with Big Data Ian McKenna, Ph.D. Senior Financial Engineer 2017 The MathWorks, Inc. 1 The Goal SCALE! 2 The Solution tall 3 Agenda Introduction to tall data Case Study: Predicting

More information

Application Development and Deployment With MATLAB

Application Development and Deployment With MATLAB Application Development and Deployment With Jean-Philippe Villaréal Application Engineer Applications Engineering Group MathWorks Benelux June 11, 2015 2015 The MathWorks, Inc. 1 Typical Industry Challenges

More information

Technical Computing with MATLAB

Technical Computing with MATLAB Technical Computing with MATLAB University Of Bath Seminar th 19 th November 2010 Adrienne James (Application Engineering) 1 Agenda Introduction to MATLAB Importing, visualising and analysing data from

More information

What s New In Simulink: Fraser Macmillen

What s New In Simulink: Fraser Macmillen What s New In Simulink: Fraser Macmillen 2015 The MathWorks, Inc. 1 Agenda Interacting with models Handling model (design) data New modelling constructs & editing features Simulink Test 2 How can you easily

More information

MathWorks Products and Prices Euro Academic September 2016

MathWorks Products and Prices Euro Academic September 2016 MATLAB Product Family Academic pricing is reserved for noncommercial use by degree-granting institutions in support of on-campus classroom instruction and academic research. Refer to /academia for complete

More information

Deploying Deep Learning Networks to Embedded GPUs and CPUs

Deploying Deep Learning Networks to Embedded GPUs and CPUs Deploying Deep Learning Networks to Embedded GPUs and CPUs Rishu Gupta, PhD Senior Application Engineer, Computer Vision 2015 The MathWorks, Inc. 1 MATLAB Deep Learning Framework Access Data Design + Train

More information

MathWorks Products and Prices International September 2016

MathWorks Products and Prices International September 2016 MATLAB Product Family page 1 of 5 MATLAB 1 2,650 10,600 Parallel Computing Toolbox 1,250 5,000 Math and Optimization Symbolic Math Toolbox 1,250 5,000 Partial Differential Equation Toolbox 1,250 5,000

More information

컴퓨터비전의최신기술 : Deep Learning, 3D Vision and Embedded Vision

컴퓨터비전의최신기술 : Deep Learning, 3D Vision and Embedded Vision 1 컴퓨터비전의최신기술 : Deep Learning, 3D Vision and Embedded Vision 김종남 Application Engineer 2017 The MathWorks, Inc. 2 Three Main Topics New capabilities for computer vision system design: Deep Learning 3-D Vision

More information

Introducing Simulink R2012b for Signal Processing & Communications Graham Reith Senior Team Leader, UK Application Engineering

Introducing Simulink R2012b for Signal Processing & Communications Graham Reith Senior Team Leader, UK Application Engineering Introducing Simulink R2012b for Signal Processing & Communications Graham Reith Senior Team Leader, UK Application Engineering 2012 The MathWorks, Inc. 1 Simulink R2012b the most significant upgrade to

More information

Introduction to Deep Learning in Signal Processing & Communications with MATLAB

Introduction to Deep Learning in Signal Processing & Communications with MATLAB Introduction to Deep Learning in Signal Processing & Communications with MATLAB Dr. Amod Anandkumar Pallavi Kar Application Engineering Group, Mathworks India 2019 The MathWorks, Inc. 1 Different Types

More information

Data Analytics with MATLAB

Data Analytics with MATLAB Data Analytics with MATLAB Tackling the Challenges of Big Data Adrienne James, PhD MathWorks 7 th October 2014 2014 The MathWorks, Inc. 1 Big Data in Industry ENERGY Asset Optimization FINANCE Market Risk,

More information

개발과정에서의 MATLAB 과 C 의연동 ( 영상처리분야 )

개발과정에서의 MATLAB 과 C 의연동 ( 영상처리분야 ) 개발과정에서의 MATLAB 과 C 의연동 ( 영상처리분야 ) Application Engineer Caleb Kim 2016 The MathWorks, Inc. 1 Algorithm Development with MATLAB for C/C++ Programmers Objectives Use MATLAB throughout algorithm development

More information

Optimizing and Accelerating Your MATLAB Code

Optimizing and Accelerating Your MATLAB Code Optimizing and Accelerating Your MATLAB Code Sofia Mosesson Senior Application Engineer 2016 The MathWorks, Inc. 1 Agenda Optimizing for loops and using vector and matrix operations Indexing in different

More information

Introduction to MATLAB application deployment

Introduction to MATLAB application deployment Introduction to application deployment Antti Löytynoja, Application Engineer 2015 The MathWorks, Inc. 1 Technical Computing with Products Access Explore & Create Share Options: Files Data Software Data

More information

Integrating MATLAB Analytics into Business-Critical Applications Marta Wilczkowiak Senior Applications Engineer MathWorks

Integrating MATLAB Analytics into Business-Critical Applications Marta Wilczkowiak Senior Applications Engineer MathWorks Integrating MATLAB Analytics into Business-Critical Applications Marta Wilczkowiak Senior Applications Engineer MathWorks 2015 The MathWorks, Inc. 1 Problem statement Democratization: Is it possible to

More information

ni.com What s New in 2013

ni.com What s New in 2013 What s New in 2013 Code Reuse and Mobile Device Integration Access the Newest Hardware Technology Code Management and Debugging Tools All Systems. Go. New Sample Projects and Improved Examples Streamlined

More information

Team-Based Collaboration in Simulink

Team-Based Collaboration in Simulink Team-Based Collaboration in Simulink Sonia Bridge 2015 The MathWorks, Inc. 1 Create tools that make it easy for teams to manage the full lifecycle of their Model-Based Design projects Collaborate Integrate

More information

Data in the Cloud and Analytics in the Lake

Data in the Cloud and Analytics in the Lake Data in the Cloud and Analytics in the Lake Introduction Working in Analytics for over 5 years Part the digital team at BNZ for 3 years Based in the Auckland office Preferred Languages SQL Python (PySpark)

More information

Data Analytics with MATLAB. Tackling the Challenges of Big Data

Data Analytics with MATLAB. Tackling the Challenges of Big Data Data Analytics with MATLAB Tackling the Challenges of Big Data How big is big? What characterises big data? Any collection of data sets so large and complex that it becomes difficult to process using traditional

More information

MATLAB Introduction. Ron Ilizarov Application Engineer

MATLAB Introduction. Ron Ilizarov Application Engineer MATLAB Introduction Ron Ilizarov Application Engineer 1 What is MATLAB? High-level language Interactive development environment Used for: Numerical computation Data analysis and visualization Algorithm

More information

What s New in Computational Finance

What s New in Computational Finance What s New in Computational Finance Kevin Shea Stuart Kozola 2018 The MathWorks, Inc. 1 What s new in MATLAB Computational Finance Products Access Research and Quantify Share Files Data Analysis and Visualization

More information

Fit für die MATLAB EXPO

Fit für die MATLAB EXPO Fit für die MATLAB EXPO Eine kurze Einführung in MATLAB Michael Glaßer 2015 The MathWorks, Inc. 1 Hinweise für Betrachter der PDF Version Die Folien sind eher eine unterstützende Zusammenfassung Der Vortrag

More information

SAS Visual Analytics 8.2: Getting Started with Reports

SAS Visual Analytics 8.2: Getting Started with Reports SAS Visual Analytics 8.2: Getting Started with Reports Introduction Reporting The SAS Visual Analytics tools give you everything you need to produce and distribute clear and compelling reports. SAS Visual

More information

Control System Design and Rapid Prototyping Using Simulink Chirag Patel Sr. Application Engineer Modeling and Simulink MathWorks India

Control System Design and Rapid Prototyping Using Simulink Chirag Patel Sr. Application Engineer Modeling and Simulink MathWorks India Control System Design and Rapid Prototyping Using Simulink Chirag Patel Sr. Application Engineer Modeling and Simulink MathWorks India 2014 The MathWorks, Inc. 1 Are you using different tools for design

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 C/C++ 사용자를위한 MATLAB 활용 : 알고리즘개발및검증 이웅재부장 2015 The MathWorks, Inc. 2 Signal Processing Algorithm Design with C/C++ Specification Algorithm Development C/C++ Testing & Debugging

More information

Behind Today s Trends The Technologies Driving Change. Paul Smith Director Consulting Services

Behind Today s Trends The Technologies Driving Change. Paul Smith Director Consulting Services Behind Today s Trends The Technologies Driving Change Paul Smith Director Consulting Services Industry 4.0 Big Data Wearable Tech Cloud Computing Internet of Things MOOC Trends from 2009 Social Computing

More information

Navigating Big Data with MATLAB

Navigating Big Data with MATLAB Navigating Big Data with MATLAB Isaac Noh Application Engineer 2015 The MathWorks, Inc. 1 How big is big? What does Big Data even mean? Big data is a term for data sets that are so large or complex that

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 웨어러블디바이스의신호분석 Senior Application Engineer 김종남 2015 The MathWorks, Inc. 2 Agenda Internet Of Things Signal Analytics and Classification : On data from wareable and mobile device

More information

Effective Team Collaboration with Simulink

Effective Team Collaboration with Simulink Effective Team Collaboration with Simulink A MathWorks Master Class: 15:45 16:45 Gavin Walker, Development Manager, Simulink Model Management 2012 The MathWorks, Inc. 1 Overview Focus: New features of

More information

Physical Modeling of Multi-Domain System

Physical Modeling of Multi-Domain System 1 Physical Modeling of Multi-Domain System 김종헌차장 Senior Application Engineer MathWorks Korea 2016 The MathWorks, Inc. 2 Agenda What is Physical Modeling? Why use Simscape? Landing Gear Modeling Landing

More information

Introducing Simulink Release 2012b for Control System Development Mark Walker MathWorks

Introducing Simulink Release 2012b for Control System Development Mark Walker MathWorks Introducing Simulink Release 2012b for Control System Development Mark Walker MathWorks 2012 The MathWorks, Inc. 1 Simulink R2012b the most significant upgrade to Simulink ever Who does Simulink R2012b

More information

Getting Started with MATLAB Francesca Perino

Getting Started with MATLAB Francesca Perino Getting Started with MATLAB Francesca Perino francesca.perino@mathworks.it 2014 The MathWorks, Inc. 1 Agenda MATLAB Intro Importazione ed esportazione Programmazione in MATLAB Tecniche per la velocizzazione

More information

Simulink to Embedded Hardware Paul Peeling MathWorks

Simulink to Embedded Hardware Paul Peeling MathWorks Simulink to Embedded Hardware Paul Peeling MathWorks 2014 The MathWorks, Inc. 1 Model-Based Design for Hardware Stakeholder Needs Requirements Manage Requirements Traceability Complete Integration and

More information

MATLAB 에서작업한응용프로그램의공유 : App 에서부터웹서비스까지

MATLAB 에서작업한응용프로그램의공유 : App 에서부터웹서비스까지 MATLAB 에서작업한응용프로그램의공유 : App 에서부터웹서비스까지 Application Engineer 엄준상 2013 The MathWorks, Inc. 1 Application Deployment with MATLAB Suppliers MATLAB Author Clients Organization Group Members Collaborators 2

More information

Embarquez votre Intelligence Artificielle (IA) sur CPU, GPU et FPGA

Embarquez votre Intelligence Artificielle (IA) sur CPU, GPU et FPGA Embarquez votre Intelligence Artificielle (IA) sur CPU, GPU et FPGA Pierre Nowodzienski Engineer pierre.nowodzienski@mathworks.fr 2018 The MathWorks, Inc. 1 From Data to Business value Make decisions Get

More information

Speeding up Simulink. Murali Yeddanapudi The MathWorks, Inc. 1

Speeding up Simulink. Murali Yeddanapudi The MathWorks, Inc. 1 Speeding up Simulink Murali Yeddanapudi 2017 The MathWorks, Inc. 1 Agenda Typical use cases Accelerator mode Performance Advisor Fast Restart and parsim Incremental workflows Solver Profiler 2 Agenda Typical

More information

MathWorks Products and Prices Euro Academic March 2014

MathWorks Products and Prices Euro Academic March 2014 MATLAB Product Family Academic pricing is reserved for noncommercial use by degree-granting institutions in support of on-campus classroom instruction and academic research. Refer to /academia for complete

More information

Introduction to Scientific Computing with Matlab

Introduction to Scientific Computing with Matlab UNIVERSITY OF WATERLOO Introduction to Scientific Computing with Matlab SAW Training Course R. William Lewis Computing Consultant Client Services Information Systems & Technology 2007 Table of Contents

More information

Lesson 5 Nimbits. Chapter-6 L05: "Internet of Things ", Raj Kamal, Publs.: McGraw-Hill Education

Lesson 5 Nimbits. Chapter-6 L05: Internet of Things , Raj Kamal, Publs.: McGraw-Hill Education Lesson 5 Nimbits 1 Cloud IoT cloud-based Service Using Server at the Edges A server can be deployed at the edges (device nodes) which communicates the feeds to the cloud service. The server also provisions

More information

Speeding up MATLAB Applications Sean de Wolski Application Engineer

Speeding up MATLAB Applications Sean de Wolski Application Engineer Speeding up MATLAB Applications Sean de Wolski Application Engineer 2014 The MathWorks, Inc. 1 Non-rigid Displacement Vector Fields 2 Agenda Leveraging the power of vector and matrix operations Addressing

More information

Demystifying Deep Learning

Demystifying Deep Learning Demystifying Deep Learning Mandar Gujrathi Mandar.Gujrathi@mathworks.com.au 2015 The MathWorks, Inc. 1 2 Deep Learning Applications Voice assistants (speech to text) Teaching character to beat video game

More information

Guido Sandmann MathWorks GmbH. Michael Seibt Mentor Graphics GmbH ABSTRACT INTRODUCTION - WORKFLOW OVERVIEW

Guido Sandmann MathWorks GmbH. Michael Seibt Mentor Graphics GmbH ABSTRACT INTRODUCTION - WORKFLOW OVERVIEW 2012-01-0962 AUTOSAR-Compliant Development Workflows: From Architecture to Implementation Tool Interoperability for Round-Trip Engineering and Verification & Validation Copyright 2012 The MathWorks, Inc.

More information

다중센서기반자율시스템의모델설계및개발 이제훈차장 The MathWorks, Inc. 2

다중센서기반자율시스템의모델설계및개발 이제훈차장 The MathWorks, Inc. 2 1 다중센서기반자율시스템의모델설계및개발 이제훈차장 2017 The MathWorks, Inc. 2 What we will see today 3 Functional Segmentation of Autonomous System Aircraft/ Platform Sense Perceive Plan & Decide Control Connect/ Communicate

More information

Version Overview. Business value

Version Overview. Business value PRODUCT SHEET CA Ideal for CA Datacom CA Ideal for CA Datacom Version 14.0 An integrated mainframe application development environment for z/os which provides an interface for web enablement, CA Ideal

More information

MATLAB is a multi-paradigm numerical computing environment fourth-generation programming language. A proprietary programming language developed by

MATLAB is a multi-paradigm numerical computing environment fourth-generation programming language. A proprietary programming language developed by 1 MATLAB is a multi-paradigm numerical computing environment fourth-generation programming language. A proprietary programming language developed by MathWorks In 2004, MATLAB had around one million users

More information

Demystifying Deep Learning

Demystifying Deep Learning Demystifying Deep Learning Let the computers do the hard work Jérémy Huard 2015 The MathWorks, Inc. 1 2 Why MATLAB for Deep Learning? MATLAB is Productive MATLAB is Fast MATLAB Integrates with Open Source

More information

Developing Customized Measurements and Automated Analysis Routines using MATLAB

Developing Customized Measurements and Automated Analysis Routines using MATLAB 2013 The MathWorks, Inc. Developing Customized Measurements and Automated Analysis Routines using MATLAB Guillaume Millot MathWorks France MathWorks Overview Founded in 1984 in the US Several software

More information

Big Data con MATLAB. Lucas García The MathWorks, Inc. 1

Big Data con MATLAB. Lucas García The MathWorks, Inc. 1 Big Data con MATLAB Lucas García 2015 The MathWorks, Inc. 1 Agenda Introduction Remote Arrays in MATLAB Tall Arrays for Big Data Scaling up Summary 2 Architecture of an analytics system Data from instruments

More information

2015 The MathWorks, Inc. 1

2015 The MathWorks, Inc. 1 2015 The MathWorks, Inc. 1 개발에서구현까지 MATLAB 환경에서의딥러닝 김종남 Application Engineer 2015 The MathWorks, Inc. 2 3 Why MATLAB for Deep Learning? MATLAB is Productive MATLAB is Fast MATLAB Integrates with Open Source

More information

Scaling up MATLAB Analytics Marta Wilczkowiak, PhD Senior Applications Engineer MathWorks

Scaling up MATLAB Analytics Marta Wilczkowiak, PhD Senior Applications Engineer MathWorks Scaling up MATLAB Analytics Marta Wilczkowiak, PhD Senior Applications Engineer MathWorks 2013 The MathWorks, Inc. 1 Agenda Giving access to your analytics to more users Handling larger problems 2 When

More information

Testing Simulink Models

Testing Simulink Models Testing Simulink Models Fraser Macmillen 2015 The MathWorks, Inc. 1 Test Infrastructure Model set-up desired parameters, variants, operating point, etc. e.g. test start up script Model stimulus desired

More information

Deep learning in MATLAB From Concept to CUDA Code

Deep learning in MATLAB From Concept to CUDA Code Deep learning in MATLAB From Concept to CUDA Code Roy Fahn Applications Engineer Systematics royf@systematics.co.il 03-7660111 Ram Kokku Principal Engineer MathWorks ram.kokku@mathworks.com 2017 The MathWorks,

More information

pandas: Rich Data Analysis Tools for Quant Finance

pandas: Rich Data Analysis Tools for Quant Finance pandas: Rich Data Analysis Tools for Quant Finance Wes McKinney April 24, 2012, QWAFAFEW Boston about me MIT 07 AQR Capital: 2007-2010 Global Macro and Credit Research WES MCKINNEY pandas: 2008 - Present

More information

Sharing and Deploying MATLAB Applications

Sharing and Deploying MATLAB Applications Sharing and Deploying Applications Dr. Roland Michaely Applications Engineer 2015 The MathWorks, Inc. 1 ICICI Securities Develops Online Financial Planning and Advisory Platform Challenge Launch a scalable

More information

Neural Network Exchange Format

Neural Network Exchange Format Copyright Khronos Group 2017 - Page 1 Neural Network Exchange Format Deploying Trained Networks to Inference Engines Viktor Gyenes, specification editor Copyright Khronos Group 2017 - Page 2 Outlook The

More information

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore Tableau in Business Intelligence Duration: 6 Days Tableau Desktop Tableau Introduction Tableau Introduction. Overview of Tableau workbook, worksheets. Dimension & Measures Discrete and Continuous Install

More information

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. Portals. Author: Sparx Systems. Date: 19/03/2018. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series Portals Author: Sparx Systems Date: 19/03/2018 Version: 1.0 CREATED WITH Table of Contents Portals 3 Perspective Portal 6 Workspace Portal 7 Window Portal 9 Status

More information

MATLAB as a Financial Engineering Development Platform Delivering Financial / Quantitative Models to the Enterprise Eugene McGoldrick

MATLAB as a Financial Engineering Development Platform Delivering Financial / Quantitative Models to the Enterprise Eugene McGoldrick as a Financial Engineering Development Platform Delivering Financial / Quantitative Models to the Enterprise Eugene McGoldrick 2016 The MathWorks, Inc. 1 Development Environment for Financial Services

More information

What s New in MATLAB 2015 Joe Hicklin

What s New in MATLAB 2015 Joe Hicklin What s New in MATLAB 2015 Joe Hicklin 2015 The MathWorks, Inc. 1 Talks showing off new features What s New in Simulink in Releases 2015a and 2015b 11:15 11:45 Machine Learning for Predictive Modelling

More information

Advance Excel Performing calculations on data 1. Naming groups of data 2. Creating formulas to calculate values

Advance Excel Performing calculations on data 1. Naming groups of data 2. Creating formulas to calculate values Advance Excel 2013 Getting started with Excel 2013 1. Identifying the different Excel 2013 programs 2. Identifying new features of Excel 2013 a. If you are upgrading from Excel 2010 b. If you are upgrading

More information

DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0

DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0 Administrator Manual DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0 P/N 15V-090-00054-100 Revision A SKF is a registered trademark of the SKF Group. All other trademarks

More information

Design Challenges for Sensor Data Analytics in Internet of Things (IoT)

Design Challenges for Sensor Data Analytics in Internet of Things (IoT) Design Challenges for Sensor Data Analytics in Internet of Things (IoT) Corey Mathis 2015 The MathWorks, Inc. 1 Agenda IoT Overview Design Challenges for Sensor Data Analytics Example Solutions

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, December 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. Trademark Information The following are either trademarks or

More information

ADVANCED EXCEL Course Modules for Advance Excel Training Online (MS Excel 2013 Course):

ADVANCED EXCEL Course Modules for Advance Excel Training Online (MS Excel 2013 Course): Course Modules for Advance Excel Training Online (MS Excel 2013 Course): ADVANCED EXCEL 2013 1 Getting started with Excel 2013 A Identifying the different Excel 2013 programs B Identifying new features

More information

Déploiement embarqué et connectivité hardware avec MATLAB et Simulink

Déploiement embarqué et connectivité hardware avec MATLAB et Simulink Déploiement embarqué et connectivité hardware avec MATLAB et Simulink Paul Cox, MathWorks 2015 The MathWorks, Inc. 1 Agenda Introduction Hardware Support Packages for MATLAB and Simulink Processor-in-the-Loop

More information

Release September 2018

Release September 2018 Oracle Fusion Middleware What's New for Oracle Data Visualization Desktop E76890-11 September 2018 What s New for Oracle Data Visualization Desktop Here s an overview of the new features and enhancements

More information

Deep Learning for Computer Vision with MATLAB By Jon Cherrie

Deep Learning for Computer Vision with MATLAB By Jon Cherrie Deep Learning for Computer Vision with MATLAB By Jon Cherrie 2015 The MathWorks, Inc. 1 Deep learning is getting a lot of attention "Dahl and his colleagues won $22,000 with a deeplearning system. 'We

More information

What s New in Simulink in R2015b and R2016a

What s New in Simulink in R2015b and R2016a What s New in Simulink in R2015b and R2016a Ruth-Anne Marchant Application Engineer 2016 The MathWorks, Inc. 1 2 Summary of Major New Capabilities for Model-Based Design RESEARCH REQUIREMENTS DESIGN Modelling

More information

MathWorks Products and Prices North America September 2016

MathWorks Products and Prices North America September 2016 MATLAB Product Family page 1 of 5 MATLAB 1 2,150 8,600 Parallel Computing Toolbox 1,000 4,000 Math and Optimization Symbolic Math Toolbox 1,000 4,000 Partial Differential Equation Toolbox 1,000 4,000 Statistics

More information

Experiment 6 SIMULINK

Experiment 6 SIMULINK Experiment 6 SIMULINK Simulink Introduction to simulink SIMULINK is an interactive environment for modeling, analyzing, and simulating a wide variety of dynamic systems. SIMULINK provides a graphical user

More information

How Real-Time Testing Improves the Design of a PMSM Controller

How Real-Time Testing Improves the Design of a PMSM Controller How Real-Time Testing Improves the Design of a PMSM Controller Prasanna Deshpande Control Design & Automation Application Engineer MathWorks 2015 The MathWorks, Inc. 1 Problem Statement: Design speed control

More information

8.3 cloud roadmap. Dr. Andrei Borshchev, CEO Nikolay Churkov, Head of Software Development. The AnyLogic Company Conference 2018 Baltimore

8.3 cloud roadmap. Dr. Andrei Borshchev, CEO Nikolay Churkov, Head of Software Development. The AnyLogic Company Conference 2018 Baltimore 8.3 cloud roadmap Dr. Andrei Borshchev, CEO Nikolay Churkov, Head of Software Development The AnyLogic Company Conference 2018 Baltimore The AnyLogic Company www.anylogic.com agenda 1. 8.3: the new web

More information

How to choose the right approach to analytics and reporting

How to choose the right approach to analytics and reporting SOLUTION OVERVIEW How to choose the right approach to analytics and reporting A comprehensive comparison of the open source and commercial versions of the OpenText Analytics Suite In today s digital world,

More information