Forcing a scalar to be represented as a 1x1 vector

조회 수: 15 (최근 30일)
Jack Kirby
Jack Kirby 2021년 1월 23일
답변: dpb 2021년 1월 23일
Is it possible to force a scalar to be represented in vector form? The purpose for this is to encode a vector in json format. If a vector has size 1 I would like it to still encode to json as a vector and not a scalar.
In the example below variables 'a' and 'b' encode to json as intended but I would like 'c' to encode as '[4]' and not '4'.
a = [1, 2];
b = 3;
c = [4];
jsonencode(a) % ans = '[1,2]'
jsonencode(b) % ans = '3'
jsonencode(c) % ans = '4'

채택된 답변

dpb
dpb 2021년 1월 23일
By the table in the documentation,
>> jsonencode({c})
ans =
'[4]'

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 JSON Format에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by