Skip to main content
9-Granite
January 7, 2025
Solved

How to check the source code

  • January 7, 2025
  • 1 reply
  • 776 views

I'm thinking of creating a program that I used to run in Mathcad14 in C language.

So, is there a way to check the Mathcad source code?

Also, I'd appreciate any advice on creating it in C language.

-----------------------------------------------------------------------------

Translated the text from Japanese to English using Google translate.

Subject - ソースコードの確認方法

Body -  Mathcad14で動かしていたプログラムをC言語でも作成しようと考えています。

そこで、Mathcadのソースコードを確認する方法はありますか?

また、C言語で作成するにあたってアドバイスがあればお願いします。

- By Community Moderation Team

-----------------------------------------------------------------------------

Best answer by LucMeekes

The short answer is: No

 

Mathcad has no provision to translate user programs to C. And the source code of Mathcad is proprietary information to PTC.

You also cannot call Mathcad functions in your C code, except for the published functions and macros listed in the developer reference.

 

To translate your Mathcad program to C is a manual process.

 

Success!
Luc

1 reply

LucMeekes23-Emerald IVAnswer
23-Emerald IV
January 7, 2025

The short answer is: No

 

Mathcad has no provision to translate user programs to C. And the source code of Mathcad is proprietary information to PTC.

You also cannot call Mathcad functions in your C code, except for the published functions and macros listed in the developer reference.

 

To translate your Mathcad program to C is a manual process.

 

Success!
Luc

9-Granite
January 7, 2025

ありがとうございます。