Skip to content

Instantly share code, notes, and snippets.

@tiborsimon
tiborsimon / librarydata.txt
Last active August 29, 2015 14:23
MATLAB Library System default library data file
My Library
v1.0
HINT: Test your installation by typing: dummy_lib_test()
@tiborsimon
tiborsimon / instal_output.txt
Last active August 29, 2015 14:23
MATLAB Library System installation output
>> install
======================================================================================
MATLAB Library System: installing My Library v1.0..
--------------------------------------------------------------------------------------
path added: C:\...\library
--------------------------------------------------------------------------------------
My Library v1.0 has been successfully installed on your system!
--------------------------------------------------------------------------------------
HINT: Test your installation by typing: dummy_lib_test()
@tiborsimon
tiborsimon / gist_demo.py
Created June 16, 2015 16:58
Demo if the 4
# This is the main function of he demo program that will print out a line to the console and then it will terminate itself by returning a zero.
def main():
print("This is a line..")
if __name__ == '__main__':
main()
@tiborsimon
tiborsimon / two_out_args.m
Created June 13, 2015 11:58
Smart Sinusoids - Two output arguments
[t,s] = ssin('f N fs x', 440, 1.3, 48e3, 'ms');
stem(t,s)
@tiborsimon
tiborsimon / one_out_arg.m
Created June 13, 2015 11:57
Smart Sinusoids - one output argument
s = ssin('f N fs', 440, 1.3, 48e3);
stem(s)
@tiborsimon
tiborsimon / no_out_arg.m
Created June 13, 2015 11:55
Smart Sinusoids - No output argument mode
stem( ssin('f N fs', 440, 1.3, 48e3) )
@tiborsimon
tiborsimon / bulk_mode_no_spaces.m
Last active August 29, 2015 14:22
Smart Sinusoids - Bulk mode without spaces
ssin('fLfs', 440, 2, 48e3)
@tiborsimon
tiborsimon / bulk_mode.m
Last active August 29, 2015 14:22
Smart Sinusoids -Bulk mode
ssin('f L fs', 440, 2, 48e3)
@tiborsimon
tiborsimon / key-vale-pairs.m
Created June 10, 2015 20:54
Smart Sinusoids - Key-value pairs mode
ssin('f', 440, 'L', 2, 'fs', 48e3)
@tiborsimon
tiborsimon / key-vale-pairs.m
Created June 10, 2015 20:52
Smart Sinusoids - Key-value pairs mode
ssin('f', 440, 'L', 2, 'fs', 48e3)