Modeling Cellular Motility Using Data











up vote
0
down vote

favorite












How would I model cellular motility from this format enter image description here



This is what my data looks like.



t=48; % total time elapsed in hours



C = [89.1 98.6 41.3751 124 54]; % cell density in cells/mm^2



C0= 12 * 10^6 * .025 /( 1.495 * 10 ); (initial cell density estimate at edge of wall in cells/mm^2)



X = [.08090614887 0.242718446 0.4045307443 0.5663430421 0.7281553398]; % Distance in mm from the edge of the wall where cells move away from



% HERE IS MY CODE.
Z = erfinv(1-(C./C0));
Q = X.*2.*sqrt(t);
U = ((1./(Q.*Z).^2)) ;
figure('Name', 'Model')
subplot(121)
plot(X,U)
title('Cell Density and Distance Model (+EGF)')
xlabel('Distance from Well Edge (mm)')



Conceptually I don't understand the motility coefficient well enough and I don't think my professor does either after asking. The data that I posted is all I have to go off of.










share|cite|improve this question


























    up vote
    0
    down vote

    favorite












    How would I model cellular motility from this format enter image description here



    This is what my data looks like.



    t=48; % total time elapsed in hours



    C = [89.1 98.6 41.3751 124 54]; % cell density in cells/mm^2



    C0= 12 * 10^6 * .025 /( 1.495 * 10 ); (initial cell density estimate at edge of wall in cells/mm^2)



    X = [.08090614887 0.242718446 0.4045307443 0.5663430421 0.7281553398]; % Distance in mm from the edge of the wall where cells move away from



    % HERE IS MY CODE.
    Z = erfinv(1-(C./C0));
    Q = X.*2.*sqrt(t);
    U = ((1./(Q.*Z).^2)) ;
    figure('Name', 'Model')
    subplot(121)
    plot(X,U)
    title('Cell Density and Distance Model (+EGF)')
    xlabel('Distance from Well Edge (mm)')



    Conceptually I don't understand the motility coefficient well enough and I don't think my professor does either after asking. The data that I posted is all I have to go off of.










    share|cite|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      How would I model cellular motility from this format enter image description here



      This is what my data looks like.



      t=48; % total time elapsed in hours



      C = [89.1 98.6 41.3751 124 54]; % cell density in cells/mm^2



      C0= 12 * 10^6 * .025 /( 1.495 * 10 ); (initial cell density estimate at edge of wall in cells/mm^2)



      X = [.08090614887 0.242718446 0.4045307443 0.5663430421 0.7281553398]; % Distance in mm from the edge of the wall where cells move away from



      % HERE IS MY CODE.
      Z = erfinv(1-(C./C0));
      Q = X.*2.*sqrt(t);
      U = ((1./(Q.*Z).^2)) ;
      figure('Name', 'Model')
      subplot(121)
      plot(X,U)
      title('Cell Density and Distance Model (+EGF)')
      xlabel('Distance from Well Edge (mm)')



      Conceptually I don't understand the motility coefficient well enough and I don't think my professor does either after asking. The data that I posted is all I have to go off of.










      share|cite|improve this question













      How would I model cellular motility from this format enter image description here



      This is what my data looks like.



      t=48; % total time elapsed in hours



      C = [89.1 98.6 41.3751 124 54]; % cell density in cells/mm^2



      C0= 12 * 10^6 * .025 /( 1.495 * 10 ); (initial cell density estimate at edge of wall in cells/mm^2)



      X = [.08090614887 0.242718446 0.4045307443 0.5663430421 0.7281553398]; % Distance in mm from the edge of the wall where cells move away from



      % HERE IS MY CODE.
      Z = erfinv(1-(C./C0));
      Q = X.*2.*sqrt(t);
      U = ((1./(Q.*Z).^2)) ;
      figure('Name', 'Model')
      subplot(121)
      plot(X,U)
      title('Cell Density and Distance Model (+EGF)')
      xlabel('Distance from Well Edge (mm)')



      Conceptually I don't understand the motility coefficient well enough and I don't think my professor does either after asking. The data that I posted is all I have to go off of.







      mathematical-modeling biology






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Nov 14 at 21:08









      user9995331

      1116




      1116



























          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "69"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2998823%2fmodeling-cellular-motility-using-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2998823%2fmodeling-cellular-motility-using-data%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Plaza Victoria

          In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

          How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...