{"id":25107,"date":"2020-08-30T09:45:49","date_gmt":"2020-08-30T09:45:49","guid":{"rendered":"https:\/\/pedagogistateam247.com\/?post_type=news&#038;p=25107"},"modified":"2020-08-30T09:45:49","modified_gmt":"2020-08-30T09:45:49","slug":"our-work-on-matlab-coding","status":"publish","type":"news","link":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding","title":{"rendered":"OUR WORK ON MATLAB CODING"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><br>Thomas Algorithm:&nbsp;<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">(To solve&nbsp;<strong>Tri-diagonal system of equations<\/strong>)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">function x = thomasfunc(a,b,c,r)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%Here thomasfunc(a,b,c,r) makes use of Thomas algorithm to calculate the<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%value of x for a tridiagonal system<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%a denotes lower diagonal of matrix A [0 a2 a3 a4]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%b denotes main diagonal of A [b1 b2 b3 b4]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%c denotes upper diagonal of A [c1 c2 c3 0]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">%r denotes right hand side vector b&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">gamma(1)=c(1)\/b(1);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">rho(1)=r(1)\/b(1);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">n=size(a,2);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">for i =2:n<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">gamma(i)=c(i)\/(b(i)-a(i)*gamma(i-1));<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">rho(i)=(r(i)-a(i)*rho(i-1))\/(b(i)-a(i)*gamma(i-1));<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">end<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">x(n)=rho(n);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">for i = 1:n-1<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">x(n-i)=rho(n-i)-gamma(n-i)*x(n-i+1);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">end<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">x=transpose(x);<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">end<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Thomas Algorithm:&nbsp; (To solve&nbsp;Tri-diagonal system of equations) function x = thomasfunc(a,b,c,r) %Here thomasfunc(a,b,c,r) makes use of Thomas algorithm to calculate the %value of x for a tridiagonal system %a denotes [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_joinchat":[],"footnotes":""},"tags":[],"news-category":[],"class_list":["post-25107","news","type-news","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>OUR WORK ON MATLAB CODING - Pedagogista Team<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OUR WORK ON MATLAB CODING - Pedagogista Team\" \/>\n<meta property=\"og:description\" content=\"Thomas Algorithm:&nbsp; (To solve&nbsp;Tri-diagonal system of equations) function x = thomasfunc(a,b,c,r) %Here thomasfunc(a,b,c,r) makes use of Thomas algorithm to calculate the %value of x for a tridiagonal system %a denotes [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding\" \/>\n<meta property=\"og:site_name\" content=\"Pedagogista Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/?news=our-work-on-matlab-coding\",\"url\":\"https:\\\/\\\/pedagogistateam247.com\\\/?news=our-work-on-matlab-coding\",\"name\":\"OUR WORK ON MATLAB CODING - Pedagogista Team\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#website\"},\"datePublished\":\"2020-08-30T09:45:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/?news=our-work-on-matlab-coding#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pedagogistateam247.com\\\/?news=our-work-on-matlab-coding\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/?news=our-work-on-matlab-coding#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pedagogistateam247.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"News\",\"item\":\"https:\\\/\\\/pedagogistateam247.com\\\/?post_type=news\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"OUR WORK ON MATLAB CODING\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#website\",\"url\":\"https:\\\/\\\/pedagogistateam247.com\\\/\",\"name\":\"Pedagogista Team\",\"description\":\"Innovative way of learning new things\",\"publisher\":{\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pedagogistateam247.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#organization\",\"name\":\"Pedagogista Team\",\"url\":\"https:\\\/\\\/pedagogistateam247.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pedagogistateam247.com\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/Adobe_Post_20201222_0915510.706865613293964.png\",\"contentUrl\":\"https:\\\/\\\/pedagogistateam247.com\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/Adobe_Post_20201222_0915510.706865613293964.png\",\"width\":1080,\"height\":1080,\"caption\":\"Pedagogista Team\"},\"image\":{\"@id\":\"https:\\\/\\\/pedagogistateam247.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OUR WORK ON MATLAB CODING - Pedagogista Team","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding","og_locale":"en_US","og_type":"article","og_title":"OUR WORK ON MATLAB CODING - Pedagogista Team","og_description":"Thomas Algorithm:&nbsp; (To solve&nbsp;Tri-diagonal system of equations) function x = thomasfunc(a,b,c,r) %Here thomasfunc(a,b,c,r) makes use of Thomas algorithm to calculate the %value of x for a tridiagonal system %a denotes [&hellip;]","og_url":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding","og_site_name":"Pedagogista Team","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding","url":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding","name":"OUR WORK ON MATLAB CODING - Pedagogista Team","isPartOf":{"@id":"https:\/\/pedagogistateam247.com\/#website"},"datePublished":"2020-08-30T09:45:49+00:00","breadcrumb":{"@id":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pedagogistateam247.com\/?news=our-work-on-matlab-coding#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pedagogistateam247.com\/"},{"@type":"ListItem","position":2,"name":"News","item":"https:\/\/pedagogistateam247.com\/?post_type=news"},{"@type":"ListItem","position":3,"name":"OUR WORK ON MATLAB CODING"}]},{"@type":"WebSite","@id":"https:\/\/pedagogistateam247.com\/#website","url":"https:\/\/pedagogistateam247.com\/","name":"Pedagogista Team","description":"Innovative way of learning new things","publisher":{"@id":"https:\/\/pedagogistateam247.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pedagogistateam247.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pedagogistateam247.com\/#organization","name":"Pedagogista Team","url":"https:\/\/pedagogistateam247.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pedagogistateam247.com\/#\/schema\/logo\/image\/","url":"https:\/\/pedagogistateam247.com\/wp-content\/uploads\/2020\/12\/Adobe_Post_20201222_0915510.706865613293964.png","contentUrl":"https:\/\/pedagogistateam247.com\/wp-content\/uploads\/2020\/12\/Adobe_Post_20201222_0915510.706865613293964.png","width":1080,"height":1080,"caption":"Pedagogista Team"},"image":{"@id":"https:\/\/pedagogistateam247.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=\/wp\/v2\/news\/25107","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=\/wp\/v2\/news"}],"about":[{"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=\/wp\/v2\/types\/news"}],"author":[{"embeddable":true,"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=25107"}],"version-history":[{"count":0,"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=\/wp\/v2\/news\/25107\/revisions"}],"wp:attachment":[{"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=25107"}],"wp:term":[{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=25107"},{"taxonomy":"news-category","embeddable":true,"href":"https:\/\/pedagogistateam247.com\/index.php?rest_route=%2Fwp%2Fv2%2Fnews-category&post=25107"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}