Alias abs to asb - MATLAB Cody - MATLAB Central

Problem 679. Alias abs to asb

Difficulty:Rate

Create an alias of a built-in function name.

Goal is to alias asb with abs for dyslexic typers.

The test suite will be

 %%
 global asb;
 k=-randi(10);
 y=make_alias(1);
 assert( isequal ( abs (k), asb (k) ) )
 % End of test

My solution uses "global asb" inside the make_alias function.

Purpose: Some names may be long and substituted by short names.

My personal nemesis is figrue.

I want an auto-correct option in the editor for a custom wordlist.

My second nemesis: function9x). MATLAB should know I meant function(x)

Solution Stats

33.72% Correct | 66.28% Incorrect
Last Solution submitted on Oct 29, 2022

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
4

Problem Recent Solvers28

Suggested Problems

More from this Author308

Problem Tags

Community Treasure Hunt

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

Start Hunting!