How can I use a Module anonymously as the function for /@?
$begingroup$
I've looked for a similar question but the one that came up first has no answer, so please bear with me as I am a complete newbie to Mathematica.
My ultimate goal is to generate custom ticks for a plot. The X axis is in minutes (not actual units, just an integer) and represents overnight times from, for example, 10pm to 3am the next day.
I've written a short function in the form of a module to convert a 'minute' value into a string "hh:mm". This works fine.
f[x_] :=
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
]
myTicks[min_, max_] := f /@ FindDivisions[{min, max, 60}, 5]
myTicks[22*60, (3 + 24)*60]
-> {"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
What I can't seem to manage is how to combine the two into a single definition of myTicks that avoids the need for the intermediate function f.
Any suggestions, please?
functions
$endgroup$
|
show 2 more comments
$begingroup$
I've looked for a similar question but the one that came up first has no answer, so please bear with me as I am a complete newbie to Mathematica.
My ultimate goal is to generate custom ticks for a plot. The X axis is in minutes (not actual units, just an integer) and represents overnight times from, for example, 10pm to 3am the next day.
I've written a short function in the form of a module to convert a 'minute' value into a string "hh:mm". This works fine.
f[x_] :=
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
]
myTicks[min_, max_] := f /@ FindDivisions[{min, max, 60}, 5]
myTicks[22*60, (3 + 24)*60]
-> {"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
What I can't seem to manage is how to combine the two into a single definition of myTicks that avoids the need for the intermediate function f.
Any suggestions, please?
functions
$endgroup$
2
$begingroup$
Look upFunction
in the documentation.
$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You're missing the&
.
$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52
|
show 2 more comments
$begingroup$
I've looked for a similar question but the one that came up first has no answer, so please bear with me as I am a complete newbie to Mathematica.
My ultimate goal is to generate custom ticks for a plot. The X axis is in minutes (not actual units, just an integer) and represents overnight times from, for example, 10pm to 3am the next day.
I've written a short function in the form of a module to convert a 'minute' value into a string "hh:mm". This works fine.
f[x_] :=
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
]
myTicks[min_, max_] := f /@ FindDivisions[{min, max, 60}, 5]
myTicks[22*60, (3 + 24)*60]
-> {"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
What I can't seem to manage is how to combine the two into a single definition of myTicks that avoids the need for the intermediate function f.
Any suggestions, please?
functions
$endgroup$
I've looked for a similar question but the one that came up first has no answer, so please bear with me as I am a complete newbie to Mathematica.
My ultimate goal is to generate custom ticks for a plot. The X axis is in minutes (not actual units, just an integer) and represents overnight times from, for example, 10pm to 3am the next day.
I've written a short function in the form of a module to convert a 'minute' value into a string "hh:mm". This works fine.
f[x_] :=
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
]
myTicks[min_, max_] := f /@ FindDivisions[{min, max, 60}, 5]
myTicks[22*60, (3 + 24)*60]
-> {"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
What I can't seem to manage is how to combine the two into a single definition of myTicks that avoids the need for the intermediate function f.
Any suggestions, please?
functions
functions
asked Feb 21 at 12:20
BruceHBruceH
1333
1333
2
$begingroup$
Look upFunction
in the documentation.
$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You're missing the&
.
$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52
|
show 2 more comments
2
$begingroup$
Look upFunction
in the documentation.
$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You're missing the&
.
$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52
2
2
$begingroup$
Look up
Function
in the documentation.$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
Look up
Function
in the documentation.$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You're missing the
&
.$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
You're missing the
&
.$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52
|
show 2 more comments
3 Answers
3
active
oldest
votes
$begingroup$
One way:
myTicks[min_, max_] :=
Table[
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
],
{x, FindDivisions[{min, max, 60}, 5]}
]
Another way:
myTicks[min_, max_] :=
Module[{q, r},
{q, r} = QuotientRemainder[#, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
] & /@ FindDivisions[{min, max, 60}, 5]
Look up Function
for more details.
$endgroup$
add a comment |
$begingroup$
For the ultimate goal, you can use the internal function System`DateListPlotDump`DateTicks
to generate the date ticks:
ClearAll[hourminuteTicks]
hourminuteTicks = MapAt[Round[#/60] &,
System`DateListPlotDump`DateTicks[60 {#, #2}, #3, {"Hour", ":", "Minute"}], {All, 1}] &;
Example:
hourminuteTicks[22*60, (3 + 24)*60, 5]
{{1320, "22:00"}, {1380, "23:00"}, {1440, "00:00"}, {1500, "01:00"}, {1560, "02:00"}, {1620, "03:00"}}
Take the last parts for the tick labels:
hourminuteTicks[22*60, (3 + 24)*60, 5][[All, 2]]
{"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
$endgroup$
add a comment |
$begingroup$
Here's a compact, completely unreadable way to achieve your goal:
myTicks[min_, max_] := (StringJoin @@ {IntegerString[Mod[#1, 24], 10, 2],
":", IntegerString[#2, 10, 2]}) & @@
QuotientRemainder[#, 60] & /@ FindDivisions[{min, max, 60}, 5];
For readability, I think intermediate functions can be helpful, and if an intermediate function is only needed inside some larger function, you can define it locally:
myTicks[min_, max_] := Module[{f},
minToHHMM[x_] := Module[
{h, m},
{h, m} = {Mod[#1, 24], #2} & @@ QuotientRemainder[x, 60];
{h, m} = IntegerString[#, 10, 2] & /@ {h, m};
StringJoin[#1, ":", #2] & @@ {h, m}
];
minToHHMM /@ FindDivisions[{min, max, 60}, 5]
]
$endgroup$
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f191930%2fhow-can-i-use-a-module-anonymously-as-the-function-for%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
One way:
myTicks[min_, max_] :=
Table[
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
],
{x, FindDivisions[{min, max, 60}, 5]}
]
Another way:
myTicks[min_, max_] :=
Module[{q, r},
{q, r} = QuotientRemainder[#, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
] & /@ FindDivisions[{min, max, 60}, 5]
Look up Function
for more details.
$endgroup$
add a comment |
$begingroup$
One way:
myTicks[min_, max_] :=
Table[
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
],
{x, FindDivisions[{min, max, 60}, 5]}
]
Another way:
myTicks[min_, max_] :=
Module[{q, r},
{q, r} = QuotientRemainder[#, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
] & /@ FindDivisions[{min, max, 60}, 5]
Look up Function
for more details.
$endgroup$
add a comment |
$begingroup$
One way:
myTicks[min_, max_] :=
Table[
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
],
{x, FindDivisions[{min, max, 60}, 5]}
]
Another way:
myTicks[min_, max_] :=
Module[{q, r},
{q, r} = QuotientRemainder[#, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
] & /@ FindDivisions[{min, max, 60}, 5]
Look up Function
for more details.
$endgroup$
One way:
myTicks[min_, max_] :=
Table[
Module[{q, r},
{q, r} = QuotientRemainder[x, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
],
{x, FindDivisions[{min, max, 60}, 5]}
]
Another way:
myTicks[min_, max_] :=
Module[{q, r},
{q, r} = QuotientRemainder[#, 60];
q = Mod[q, 24];
q = IntegerString[q, 10, 2];
r = IntegerString[r, 10, 2];
StringJoin[q, ":", r]
] & /@ FindDivisions[{min, max, 60}, 5]
Look up Function
for more details.
answered Feb 21 at 12:44
SzabolcsSzabolcs
163k14446944
163k14446944
add a comment |
add a comment |
$begingroup$
For the ultimate goal, you can use the internal function System`DateListPlotDump`DateTicks
to generate the date ticks:
ClearAll[hourminuteTicks]
hourminuteTicks = MapAt[Round[#/60] &,
System`DateListPlotDump`DateTicks[60 {#, #2}, #3, {"Hour", ":", "Minute"}], {All, 1}] &;
Example:
hourminuteTicks[22*60, (3 + 24)*60, 5]
{{1320, "22:00"}, {1380, "23:00"}, {1440, "00:00"}, {1500, "01:00"}, {1560, "02:00"}, {1620, "03:00"}}
Take the last parts for the tick labels:
hourminuteTicks[22*60, (3 + 24)*60, 5][[All, 2]]
{"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
$endgroup$
add a comment |
$begingroup$
For the ultimate goal, you can use the internal function System`DateListPlotDump`DateTicks
to generate the date ticks:
ClearAll[hourminuteTicks]
hourminuteTicks = MapAt[Round[#/60] &,
System`DateListPlotDump`DateTicks[60 {#, #2}, #3, {"Hour", ":", "Minute"}], {All, 1}] &;
Example:
hourminuteTicks[22*60, (3 + 24)*60, 5]
{{1320, "22:00"}, {1380, "23:00"}, {1440, "00:00"}, {1500, "01:00"}, {1560, "02:00"}, {1620, "03:00"}}
Take the last parts for the tick labels:
hourminuteTicks[22*60, (3 + 24)*60, 5][[All, 2]]
{"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
$endgroup$
add a comment |
$begingroup$
For the ultimate goal, you can use the internal function System`DateListPlotDump`DateTicks
to generate the date ticks:
ClearAll[hourminuteTicks]
hourminuteTicks = MapAt[Round[#/60] &,
System`DateListPlotDump`DateTicks[60 {#, #2}, #3, {"Hour", ":", "Minute"}], {All, 1}] &;
Example:
hourminuteTicks[22*60, (3 + 24)*60, 5]
{{1320, "22:00"}, {1380, "23:00"}, {1440, "00:00"}, {1500, "01:00"}, {1560, "02:00"}, {1620, "03:00"}}
Take the last parts for the tick labels:
hourminuteTicks[22*60, (3 + 24)*60, 5][[All, 2]]
{"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
$endgroup$
For the ultimate goal, you can use the internal function System`DateListPlotDump`DateTicks
to generate the date ticks:
ClearAll[hourminuteTicks]
hourminuteTicks = MapAt[Round[#/60] &,
System`DateListPlotDump`DateTicks[60 {#, #2}, #3, {"Hour", ":", "Minute"}], {All, 1}] &;
Example:
hourminuteTicks[22*60, (3 + 24)*60, 5]
{{1320, "22:00"}, {1380, "23:00"}, {1440, "00:00"}, {1500, "01:00"}, {1560, "02:00"}, {1620, "03:00"}}
Take the last parts for the tick labels:
hourminuteTicks[22*60, (3 + 24)*60, 5][[All, 2]]
{"22:00", "23:00", "00:00", "01:00", "02:00", "03:00"}
edited Feb 21 at 18:46
answered Feb 21 at 15:36
kglrkglr
189k10206424
189k10206424
add a comment |
add a comment |
$begingroup$
Here's a compact, completely unreadable way to achieve your goal:
myTicks[min_, max_] := (StringJoin @@ {IntegerString[Mod[#1, 24], 10, 2],
":", IntegerString[#2, 10, 2]}) & @@
QuotientRemainder[#, 60] & /@ FindDivisions[{min, max, 60}, 5];
For readability, I think intermediate functions can be helpful, and if an intermediate function is only needed inside some larger function, you can define it locally:
myTicks[min_, max_] := Module[{f},
minToHHMM[x_] := Module[
{h, m},
{h, m} = {Mod[#1, 24], #2} & @@ QuotientRemainder[x, 60];
{h, m} = IntegerString[#, 10, 2] & /@ {h, m};
StringJoin[#1, ":", #2] & @@ {h, m}
];
minToHHMM /@ FindDivisions[{min, max, 60}, 5]
]
$endgroup$
add a comment |
$begingroup$
Here's a compact, completely unreadable way to achieve your goal:
myTicks[min_, max_] := (StringJoin @@ {IntegerString[Mod[#1, 24], 10, 2],
":", IntegerString[#2, 10, 2]}) & @@
QuotientRemainder[#, 60] & /@ FindDivisions[{min, max, 60}, 5];
For readability, I think intermediate functions can be helpful, and if an intermediate function is only needed inside some larger function, you can define it locally:
myTicks[min_, max_] := Module[{f},
minToHHMM[x_] := Module[
{h, m},
{h, m} = {Mod[#1, 24], #2} & @@ QuotientRemainder[x, 60];
{h, m} = IntegerString[#, 10, 2] & /@ {h, m};
StringJoin[#1, ":", #2] & @@ {h, m}
];
minToHHMM /@ FindDivisions[{min, max, 60}, 5]
]
$endgroup$
add a comment |
$begingroup$
Here's a compact, completely unreadable way to achieve your goal:
myTicks[min_, max_] := (StringJoin @@ {IntegerString[Mod[#1, 24], 10, 2],
":", IntegerString[#2, 10, 2]}) & @@
QuotientRemainder[#, 60] & /@ FindDivisions[{min, max, 60}, 5];
For readability, I think intermediate functions can be helpful, and if an intermediate function is only needed inside some larger function, you can define it locally:
myTicks[min_, max_] := Module[{f},
minToHHMM[x_] := Module[
{h, m},
{h, m} = {Mod[#1, 24], #2} & @@ QuotientRemainder[x, 60];
{h, m} = IntegerString[#, 10, 2] & /@ {h, m};
StringJoin[#1, ":", #2] & @@ {h, m}
];
minToHHMM /@ FindDivisions[{min, max, 60}, 5]
]
$endgroup$
Here's a compact, completely unreadable way to achieve your goal:
myTicks[min_, max_] := (StringJoin @@ {IntegerString[Mod[#1, 24], 10, 2],
":", IntegerString[#2, 10, 2]}) & @@
QuotientRemainder[#, 60] & /@ FindDivisions[{min, max, 60}, 5];
For readability, I think intermediate functions can be helpful, and if an intermediate function is only needed inside some larger function, you can define it locally:
myTicks[min_, max_] := Module[{f},
minToHHMM[x_] := Module[
{h, m},
{h, m} = {Mod[#1, 24], #2} & @@ QuotientRemainder[x, 60];
{h, m} = IntegerString[#, 10, 2] & /@ {h, m};
StringJoin[#1, ":", #2] & @@ {h, m}
];
minToHHMM /@ FindDivisions[{min, max, 60}, 5]
]
answered Feb 21 at 14:28
N.J.EvansN.J.Evans
3,7351319
3,7351319
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f191930%2fhow-can-i-use-a-module-anonymously-as-the-function-for%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
2
$begingroup$
Look up
Function
in the documentation.$endgroup$
– Szabolcs
Feb 21 at 12:21
$begingroup$
You'll have to be a little more specific, please. I've tried this but it doesn't work. MyTicks2[min_, max_] := Function[ Module[{q, r}, {q, r} = QuotientRemainder[#, 60]; q = Mod[q, 24]; q = IntegerString[q, 10, 2]; r = IntegerString[r, 10, 2]; StringJoin[q, ":", r] ] ] /@ FindDivisions[{min, max, 60}, 5]
$endgroup$
– BruceH
Feb 21 at 12:47
$begingroup$
You're missing the
&
.$endgroup$
– Szabolcs
Feb 21 at 12:48
$begingroup$
In the Function documentation, basic examples In[2] doesn't have an &.
$endgroup$
– BruceH
Feb 21 at 12:50
$begingroup$
Did you look at the answer I posted, which has a complete example? BTW the code you posted in the comment works fine. I misread it originally.
$endgroup$
– Szabolcs
Feb 21 at 12:52