plotting tilted sine wave












1












$begingroup$


I am trying to plot a titled(7% to right side) sine wave type line whose length is 400 units and height of the wave is 90 units.
I want the equation to be in the cartesian coordinates.
kindly help me to resolve this problem.enter image description here



y = a * Sin [(x-h)/b] + k


I have tried this simple equation of sine wave to plot the following points and this plotnis symmetrical. Now my target is to shift or tilt the peak little bit towards the right side.










share|improve this question











$endgroup$












  • $begingroup$
    What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
    $endgroup$
    – Pillsy
    Dec 7 '18 at 19:09










  • $begingroup$
    sir i have modified my question.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 7 '18 at 19:24
















1












$begingroup$


I am trying to plot a titled(7% to right side) sine wave type line whose length is 400 units and height of the wave is 90 units.
I want the equation to be in the cartesian coordinates.
kindly help me to resolve this problem.enter image description here



y = a * Sin [(x-h)/b] + k


I have tried this simple equation of sine wave to plot the following points and this plotnis symmetrical. Now my target is to shift or tilt the peak little bit towards the right side.










share|improve this question











$endgroup$












  • $begingroup$
    What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
    $endgroup$
    – Pillsy
    Dec 7 '18 at 19:09










  • $begingroup$
    sir i have modified my question.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 7 '18 at 19:24














1












1








1





$begingroup$


I am trying to plot a titled(7% to right side) sine wave type line whose length is 400 units and height of the wave is 90 units.
I want the equation to be in the cartesian coordinates.
kindly help me to resolve this problem.enter image description here



y = a * Sin [(x-h)/b] + k


I have tried this simple equation of sine wave to plot the following points and this plotnis symmetrical. Now my target is to shift or tilt the peak little bit towards the right side.










share|improve this question











$endgroup$




I am trying to plot a titled(7% to right side) sine wave type line whose length is 400 units and height of the wave is 90 units.
I want the equation to be in the cartesian coordinates.
kindly help me to resolve this problem.enter image description here



y = a * Sin [(x-h)/b] + k


I have tried this simple equation of sine wave to plot the following points and this plotnis symmetrical. Now my target is to shift or tilt the peak little bit towards the right side.







plotting






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 7 '18 at 19:22







Muti Ur Rehman Khan

















asked Dec 7 '18 at 19:06









Muti Ur Rehman KhanMuti Ur Rehman Khan

133




133












  • $begingroup$
    What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
    $endgroup$
    – Pillsy
    Dec 7 '18 at 19:09










  • $begingroup$
    sir i have modified my question.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 7 '18 at 19:24


















  • $begingroup$
    What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
    $endgroup$
    – Pillsy
    Dec 7 '18 at 19:09










  • $begingroup$
    sir i have modified my question.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 7 '18 at 19:24
















$begingroup$
What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
$endgroup$
– Pillsy
Dec 7 '18 at 19:09




$begingroup$
What have you tried? Also, there are many other parameters of interest for a "sine wave type" like frequency and phase.
$endgroup$
– Pillsy
Dec 7 '18 at 19:09












$begingroup$
sir i have modified my question.
$endgroup$
– Muti Ur Rehman Khan
Dec 7 '18 at 19:24




$begingroup$
sir i have modified my question.
$endgroup$
– Muti Ur Rehman Khan
Dec 7 '18 at 19:24










2 Answers
2






active

oldest

votes


















2












$begingroup$

Standard sine wave height 90 and period 400.



y == 90 Sin[(2 π x)/400]


You want a 7% tilt which I assume means the offset is 0 at y = 0, so the offset should be proportional to the Abs[y]



Tilted equation.



y == 90 Sin[(2 π (x - .07 Abs[y]))/400]


We have a transcendental equation, so use FindRoot.



Table[{x, y /. FindRoot[ y == 90 Sin[(2 π (x - .07 Abs[y]))/400], {y, Sin[x]}]}, {x, 0, 400, 10}];

p1 = ListPlot[%];


Compare with unaltered sine wave.



p2 = Plot[90 Sin[(2 π x)/400], {x, 0, 400}];

Show[p1, p2]


enter image description here



If you meant the tilt to be to the left for negative y's, use y instead of Abs[y].






share|improve this answer











$endgroup$













  • $begingroup$
    thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 20:14










  • $begingroup$
    I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
    $endgroup$
    – Bill Watts
    Dec 9 '18 at 22:47



















3












$begingroup$

a=1;h=0;b=1;k=0; (* or whatever you wanted *)
tiltPercent = .07; (* or whatever percent *)
y = (a * Sin[(x-h)/b] + k) - (tiltPercent*x)
Plot[y, {x,0,10}] (* or whatever range *)


Unless I'm misunderstanding the question (very possible) this is not a plotting question, but a question on how to mathematically decrease the Sin function linearly. Let me know if this helps, or I'm way off what you were looking for!






share|improve this answer









$endgroup$













  • $begingroup$
    sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 8 '18 at 13:58










  • $begingroup$
    So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
    $endgroup$
    – Reedinationer
    Dec 9 '18 at 16:37










  • $begingroup$
    respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 19:31











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: "387"
};
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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f187506%2fplotting-tilted-sine-wave%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2












$begingroup$

Standard sine wave height 90 and period 400.



y == 90 Sin[(2 π x)/400]


You want a 7% tilt which I assume means the offset is 0 at y = 0, so the offset should be proportional to the Abs[y]



Tilted equation.



y == 90 Sin[(2 π (x - .07 Abs[y]))/400]


We have a transcendental equation, so use FindRoot.



Table[{x, y /. FindRoot[ y == 90 Sin[(2 π (x - .07 Abs[y]))/400], {y, Sin[x]}]}, {x, 0, 400, 10}];

p1 = ListPlot[%];


Compare with unaltered sine wave.



p2 = Plot[90 Sin[(2 π x)/400], {x, 0, 400}];

Show[p1, p2]


enter image description here



If you meant the tilt to be to the left for negative y's, use y instead of Abs[y].






share|improve this answer











$endgroup$













  • $begingroup$
    thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 20:14










  • $begingroup$
    I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
    $endgroup$
    – Bill Watts
    Dec 9 '18 at 22:47
















2












$begingroup$

Standard sine wave height 90 and period 400.



y == 90 Sin[(2 π x)/400]


You want a 7% tilt which I assume means the offset is 0 at y = 0, so the offset should be proportional to the Abs[y]



Tilted equation.



y == 90 Sin[(2 π (x - .07 Abs[y]))/400]


We have a transcendental equation, so use FindRoot.



Table[{x, y /. FindRoot[ y == 90 Sin[(2 π (x - .07 Abs[y]))/400], {y, Sin[x]}]}, {x, 0, 400, 10}];

p1 = ListPlot[%];


Compare with unaltered sine wave.



p2 = Plot[90 Sin[(2 π x)/400], {x, 0, 400}];

Show[p1, p2]


enter image description here



If you meant the tilt to be to the left for negative y's, use y instead of Abs[y].






share|improve this answer











$endgroup$













  • $begingroup$
    thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 20:14










  • $begingroup$
    I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
    $endgroup$
    – Bill Watts
    Dec 9 '18 at 22:47














2












2








2





$begingroup$

Standard sine wave height 90 and period 400.



y == 90 Sin[(2 π x)/400]


You want a 7% tilt which I assume means the offset is 0 at y = 0, so the offset should be proportional to the Abs[y]



Tilted equation.



y == 90 Sin[(2 π (x - .07 Abs[y]))/400]


We have a transcendental equation, so use FindRoot.



Table[{x, y /. FindRoot[ y == 90 Sin[(2 π (x - .07 Abs[y]))/400], {y, Sin[x]}]}, {x, 0, 400, 10}];

p1 = ListPlot[%];


Compare with unaltered sine wave.



p2 = Plot[90 Sin[(2 π x)/400], {x, 0, 400}];

Show[p1, p2]


enter image description here



If you meant the tilt to be to the left for negative y's, use y instead of Abs[y].






share|improve this answer











$endgroup$



Standard sine wave height 90 and period 400.



y == 90 Sin[(2 π x)/400]


You want a 7% tilt which I assume means the offset is 0 at y = 0, so the offset should be proportional to the Abs[y]



Tilted equation.



y == 90 Sin[(2 π (x - .07 Abs[y]))/400]


We have a transcendental equation, so use FindRoot.



Table[{x, y /. FindRoot[ y == 90 Sin[(2 π (x - .07 Abs[y]))/400], {y, Sin[x]}]}, {x, 0, 400, 10}];

p1 = ListPlot[%];


Compare with unaltered sine wave.



p2 = Plot[90 Sin[(2 π x)/400], {x, 0, 400}];

Show[p1, p2]


enter image description here



If you meant the tilt to be to the left for negative y's, use y instead of Abs[y].







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 8 '18 at 18:30

























answered Dec 8 '18 at 0:05









Bill WattsBill Watts

3,2011519




3,2011519












  • $begingroup$
    thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 20:14










  • $begingroup$
    I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
    $endgroup$
    – Bill Watts
    Dec 9 '18 at 22:47


















  • $begingroup$
    thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 20:14










  • $begingroup$
    I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
    $endgroup$
    – Bill Watts
    Dec 9 '18 at 22:47
















$begingroup$
thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
$endgroup$
– Muti Ur Rehman Khan
Dec 9 '18 at 20:14




$begingroup$
thank you, sir, your answer is very helpful. the plot is perfect but I have a little confusion about the FIndRoot command I want the simple equation which I could use in "Gmsh" meshing software to plot my required 3D structure. Gmsh did not provide any FindROot command. kindly please guide me about this and suggest me some method by which I can get the points without using FindRoot command
$endgroup$
– Muti Ur Rehman Khan
Dec 9 '18 at 20:14












$begingroup$
I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
$endgroup$
– Bill Watts
Dec 9 '18 at 22:47




$begingroup$
I'm not familiar with Gmsh and have no idea about its computing capabilities. If you can't feed the table of points computed with Mathematica into the other program, but must compute with that program, this is probably the wrong forum for that question. You could compute points from the inverse; that is, find x given y` by x == (7*Pi*Abs[y] + 20000*(2*Pi*n + ArcSin[y/90]))/(100*Pi) where n is an integer.
$endgroup$
– Bill Watts
Dec 9 '18 at 22:47











3












$begingroup$

a=1;h=0;b=1;k=0; (* or whatever you wanted *)
tiltPercent = .07; (* or whatever percent *)
y = (a * Sin[(x-h)/b] + k) - (tiltPercent*x)
Plot[y, {x,0,10}] (* or whatever range *)


Unless I'm misunderstanding the question (very possible) this is not a plotting question, but a question on how to mathematically decrease the Sin function linearly. Let me know if this helps, or I'm way off what you were looking for!






share|improve this answer









$endgroup$













  • $begingroup$
    sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 8 '18 at 13:58










  • $begingroup$
    So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
    $endgroup$
    – Reedinationer
    Dec 9 '18 at 16:37










  • $begingroup$
    respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 19:31
















3












$begingroup$

a=1;h=0;b=1;k=0; (* or whatever you wanted *)
tiltPercent = .07; (* or whatever percent *)
y = (a * Sin[(x-h)/b] + k) - (tiltPercent*x)
Plot[y, {x,0,10}] (* or whatever range *)


Unless I'm misunderstanding the question (very possible) this is not a plotting question, but a question on how to mathematically decrease the Sin function linearly. Let me know if this helps, or I'm way off what you were looking for!






share|improve this answer









$endgroup$













  • $begingroup$
    sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 8 '18 at 13:58










  • $begingroup$
    So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
    $endgroup$
    – Reedinationer
    Dec 9 '18 at 16:37










  • $begingroup$
    respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 19:31














3












3








3





$begingroup$

a=1;h=0;b=1;k=0; (* or whatever you wanted *)
tiltPercent = .07; (* or whatever percent *)
y = (a * Sin[(x-h)/b] + k) - (tiltPercent*x)
Plot[y, {x,0,10}] (* or whatever range *)


Unless I'm misunderstanding the question (very possible) this is not a plotting question, but a question on how to mathematically decrease the Sin function linearly. Let me know if this helps, or I'm way off what you were looking for!






share|improve this answer









$endgroup$



a=1;h=0;b=1;k=0; (* or whatever you wanted *)
tiltPercent = .07; (* or whatever percent *)
y = (a * Sin[(x-h)/b] + k) - (tiltPercent*x)
Plot[y, {x,0,10}] (* or whatever range *)


Unless I'm misunderstanding the question (very possible) this is not a plotting question, but a question on how to mathematically decrease the Sin function linearly. Let me know if this helps, or I'm way off what you were looking for!







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 7 '18 at 21:36









ReedinationerReedinationer

415




415












  • $begingroup$
    sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 8 '18 at 13:58










  • $begingroup$
    So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
    $endgroup$
    – Reedinationer
    Dec 9 '18 at 16:37










  • $begingroup$
    respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 19:31


















  • $begingroup$
    sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 8 '18 at 13:58










  • $begingroup$
    So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
    $endgroup$
    – Reedinationer
    Dec 9 '18 at 16:37










  • $begingroup$
    respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
    $endgroup$
    – Muti Ur Rehman Khan
    Dec 9 '18 at 19:31
















$begingroup$
sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
$endgroup$
– Muti Ur Rehman Khan
Dec 8 '18 at 13:58




$begingroup$
sir, you have rotated the wave and by this, every peak is higher than the previous one. I want the sinusoidal which should not be vertically shifted.
$endgroup$
– Muti Ur Rehman Khan
Dec 8 '18 at 13:58












$begingroup$
So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
$endgroup$
– Reedinationer
Dec 9 '18 at 16:37




$begingroup$
So when you say tilted to the right, do you mean the entire box containing the plot should be tilted? How do you plan to tilt the plot without a vertical shift? Perhaps you could draw by hand what you want and upload a scanned picture of it so we can get a better idea?
$endgroup$
– Reedinationer
Dec 9 '18 at 16:37












$begingroup$
respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
$endgroup$
– Muti Ur Rehman Khan
Dec 9 '18 at 19:31




$begingroup$
respected sir, by tilt to right i mean the peak of the wave should be tilted towards right side and there should be not change in the horizontal plot.
$endgroup$
– Muti Ur Rehman Khan
Dec 9 '18 at 19:31


















draft saved

draft discarded




















































Thanks for contributing an answer to Mathematica Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f187506%2fplotting-tilted-sine-wave%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

How do I know what Microsoft account the skydrive app is syncing to?

When does type information flow backwards in C++?

Grease: Live!