makesvg

Create SVG files in matlab
11 descargas
Actualizado 1 dic 2022

makesvg

Create SVG files in matlab

This software is designed to create SVG files usings matlab, made up of basic shapes and texts.

It was written to create precise stimuli for running psychophysics / motor control experiments

Usage example:

% Open a text file for writing
fp = fopen('basis.svg','w');
% start the svg with a width of 400 and height of 300
startsvg(fp,400,300);
% draw a circle with a red line, filled with blue
drawCircle(fp,100,100,20,4,'red','blue');
% Finish the SVG file
endsvg(fp);
% close the file handle
fclose(fp);

See the file example.m for a full example

View makesvg on File Exchange

Citar como

Jason Friedman (2024). makesvg (https://github.com/JasonFriedman/makesvg/releases/tag/1.0), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2022b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Etiquetas Añadir etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.