Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonathan Wilkes
purr-data
Commits
bba977ed
Commit
bba977ed
authored
11 years ago
by
Ivica Bukvic
Browse files
Options
Downloads
Patches
Plain Diff
added ability for optional argument in the log~ object and updated the doc accordingly.
parent
29bbf790
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pd/doc/5.reference/log~-help.pd
+5
-6
5 additions, 6 deletions
pd/doc/5.reference/log~-help.pd
pd/src/d_math.c
+61
-7
61 additions, 7 deletions
pd/src/d_math.c
with
66 additions
and
13 deletions
pd/doc/5.reference/log~-help.pd
+
5
−
6
View file @
bba977ed
...
...
@@ -17,7 +17,7 @@ for Pd-l2ork version 2013.05.28;
signal;
#X text 14 65 INLET_0 signal;
#X text 14 105 OUTLET_0 signal;
#X restore 49
8
37
5
pd META;
#X restore 49
9
37
7
pd META;
#X obj -2 296 cnv 3 550 3 empty \$0-pddp.cnv.outlets outlets 8 12 0
13 -228856 -1 0;
#X obj -2 333 cnv 3 550 3 empty \$0-pddp.cnv.argument arguments 8 12
...
...
@@ -44,15 +44,15 @@ signal;
#X text 109 307 signal;
#X text 179 307 - log of the signal with specified base;
#X text 91 346 1) float;
#X text 179 34
4
- set the base of the logarithm.;
#X text 179 34
6
- set the base of the logarithm.;
#X obj 480 -56 pddp/dsp;
#X obj
7
37
3
pddp/pddplink all_about_help_patches.pd -text Usage Guide
#X obj
3
37
5
pddp/pddplink all_about_help_patches.pd -text Usage Guide
;
#X obj 5
4
56 sig~;
#X obj 5
5
56 sig~;
#X obj 126 112 loadbang;
#X obj 126 136 metro 100;
#X obj 113 162 snapshot~;
#X floatatom 5
4
32 5 0 0 0 - - -, f 5;
#X floatatom 5
5
32 5 0 0 0 - - -, f 5;
#X obj 95 56 sig~;
#X floatatom 95 32 5 0 0 0 - - -, f 5;
#X floatatom 113 187 7 0 0 0 - - -, f 7;
...
...
@@ -126,6 +126,5 @@ input.;
#X connect 24 0 25 0;
#X connect 25 0 29 0;
#X connect 26 0 22 0;
#X connect 27 0 31 1;
#X connect 28 0 27 0;
#X connect 31 0 25 0;
This diff is collapsed.
Click to expand it.
pd/src/d_math.c
+
61
−
7
View file @
bba977ed
...
...
@@ -696,7 +696,7 @@ static void exp_tilde_setup(void)
}
/* ----------------------------- log ----------------------------- */
static
t_class
*
log_tilde_class
;
static
t_class
*
log_tilde_class
,
*
scalarlog_tilde_class
;
typedef
struct
_log_tilde
{
...
...
@@ -704,13 +704,36 @@ typedef struct _log_tilde
t_float
x_f
;
}
t_log_tilde
;
typedef
struct
_scalarlog_tilde
{
t_object
x_obj
;
t_float
x_f
;
t_float
x_g
;
}
t_scalarlog_tilde
;
#include
<stdio.h>
static
void
*
log_tilde_new
(
t_symbol
*
s
,
int
argc
,
t_atom
*
argv
)
{
t_log_tilde
*
x
=
(
t_log_tilde
*
)
pd_new
(
log_tilde_class
);
inlet_new
(
&
x
->
x_obj
,
&
x
->
x_obj
.
ob_pd
,
&
s_signal
,
&
s_signal
);
outlet_new
(
&
x
->
x_obj
,
&
s_signal
);
x
->
x_f
=
0
;
return
(
x
);
if
(
argc
>
1
)
post
(
"log~: extra arguments ignored"
);
if
(
argc
)
{
t_scalarlog_tilde
*
x
=
(
t_scalarlog_tilde
*
)
pd_new
(
scalarlog_tilde_class
);
floatinlet_new
(
&
x
->
x_obj
,
&
x
->
x_g
);
x
->
x_g
=
atom_getfloatarg
(
0
,
argc
,
argv
);
outlet_new
(
&
x
->
x_obj
,
&
s_signal
);
x
->
x_f
=
0
;
return
(
x
);
}
else
{
t_log_tilde
*
x
=
(
t_log_tilde
*
)
pd_new
(
log_tilde_class
);
inlet_new
(
&
x
->
x_obj
,
&
x
->
x_obj
.
ob_pd
,
&
s_signal
,
&
s_signal
);
x
->
x_f
=
0
;
outlet_new
(
&
x
->
x_obj
,
&
s_signal
);
return
(
x
);
}
}
t_int
*
log_tilde_perform
(
t_int
*
w
)
...
...
@@ -732,18 +755,49 @@ t_int *log_tilde_perform(t_int *w)
return
(
w
+
5
);
}
t_int
*
scalarlog_tilde_perform
(
t_int
*
w
)
{
t_sample
*
in
=
(
t_sample
*
)(
w
[
1
]);
t_float
g
=
*
(
t_float
*
)(
w
[
2
]);
t_sample
*
out
=
(
t_sample
*
)(
w
[
3
]);
int
n
=
(
int
)(
w
[
4
]);
while
(
n
--
)
{
t_float
f
=
*
in
++
;
if
(
f
<=
0
)
*
out
=
-
1000
;
/* rather than blow up, output a number << 0 */
else
if
(
g
<=
0
)
*
out
=
log
(
f
);
else
*
out
=
log
(
f
)
/
log
(
g
);
out
++
;
}
return
(
w
+
5
);
}
static
void
log_tilde_dsp
(
t_log_tilde
*
x
,
t_signal
**
sp
)
{
dsp_add
(
log_tilde_perform
,
4
,
sp
[
0
]
->
s_vec
,
sp
[
1
]
->
s_vec
,
sp
[
2
]
->
s_vec
,
sp
[
0
]
->
s_n
);
}
static
void
scalarlog_tilde_dsp
(
t_scalarlog_tilde
*
x
,
t_signal
**
sp
)
{
dsp_add
(
scalarlog_tilde_perform
,
4
,
sp
[
0
]
->
s_vec
,
&
x
->
x_g
,
sp
[
1
]
->
s_vec
,
sp
[
0
]
->
s_n
);
}
static
void
log_tilde_setup
(
void
)
{
log_tilde_class
=
class_new
(
gensym
(
"log~"
),
(
t_newmethod
)
log_tilde_new
,
0
,
sizeof
(
t_log_tilde
),
0
,
A_
DEFFLOAT
,
0
);
sizeof
(
t_log_tilde
),
0
,
A_
GIMME
,
0
);
CLASS_MAINSIGNALIN
(
log_tilde_class
,
t_log_tilde
,
x_f
);
class_addmethod
(
log_tilde_class
,
(
t_method
)
log_tilde_dsp
,
gensym
(
"dsp"
),
0
);
scalarlog_tilde_class
=
class_new
(
gensym
(
"log~"
),
0
,
0
,
sizeof
(
t_scalarlog_tilde
),
0
,
0
);
CLASS_MAINSIGNALIN
(
scalarlog_tilde_class
,
t_scalarlog_tilde
,
x_f
);
class_addmethod
(
scalarlog_tilde_class
,
(
t_method
)
scalarlog_tilde_dsp
,
gensym
(
"dsp"
),
0
);
}
/* ----------------------------- abs ----------------------------- */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment