Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8283797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:52:06+00:00 2026-06-08T10:52:06+00:00

Symbolic Aggregate Approximation talks about converting a time series (x,t) into symbols.Based on this,I

  • 0

Symbolic Aggregate Approximation talks about converting a time series (x,t) into symbols.Based on this,I have few basic queries. What if the time signal is a composite of (x,y,z,t) representing position coordinates or simply (x,y,t) for 2 dimensional image with a time stamp t. Then how do I use this tool to assign symbols/discretize.Please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T10:52:10+00:00Added an answer on June 8, 2026 at 10:52 am

    You could apply the SAX transformation to each dimension separately, then combine the symbols/letters for each time stamp.

    Take the (x,y,z,t) for example, you would get the combination b,a,c for t=1, then a,a,c for t=2, etc..

    You could then combine the symbols to form “mega-symbols” if you want. Say the set of symbols was Symbols={a,b,c}. Then the new set of letters would simply be the cartesian product SxSxS (one for each dimension).

    In other words aaa becomes the new letter A, aab as B, then aac, aba, abb, etc..


    EDIT:

    Here is some code to show what I had in mind. Since I don’t have an implementation of SAX algorithm, I will be using the following function as placeholder (it returns rubbish):

    %# use your actual SAX function instead of this one
    my_sax_function = @(x,n,a) randi(a, [n 1]);
    

    Here is the code:

    %# time series of length=100, with (x,y,z) at each timestamp
    data = cumsum(randn(100,3));
    
    %# apply your SAX function to each dimension independently
    N = 20;     %# number of segments to divide the signal into
    A = 3;      %# size of alphabet (a,b,c)
    dataSAX = zeros(N,3);
    for i=1:3
        dataSAX(:,i) = my_sax_function(data(:,i), N, A);
    end
    
    %# we assume the above function returns integers denoting the symbols
    %# therefore row i corresponds to A=3 symbols for each of the 3 x/y/z dimensions
    dataSAX(1,:)
    
    %# build cartesian product of all combinations of the A=3 symbols
    [x y z] = ndgrid(1:A,1:A,1:A);
    cartProd = [x(:) y(:) z(:)];
    
    %# map to the new alphabet with 3*3*3 = 27 symbols
    [~,V] = ismember(dataSAX, cartProd, 'rows')
    
    %# A to Z with $ character to make up 27 symbols
    oldSymbols = {'a';'b';'c'};             %# 1: a, 2: b, 3: c
    newSymbols = cellstr(['A':'Z' '$']');   %# 1: A, ..., 26: Z, 27: $
    
    %# SAX representation of the entire time series as a string
    mappedV = char(newSymbols(V))'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a symbolic link in Linux. I have written this Bash
I have Symbolic C++ (the version that can integrate with V, there is no
I have a symbolic name java or jre or jre1.5 or jre1.6 or java1.5
I have the following File object pointing to a directory via symbolic link, File
Can we use $HOME or other environment variable in symbolic links? I know about
I have a symbolic link for my live server called current and I have
So i normally use this syntax to create as symbolic link from powershell. PS
If I have a file or directory that is a symbolic link and I
I have a symbolic link a.c in my home directory to another file in
I am trying to use symbolic links in one of the applications I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.