Skip to content

issues Search Results · repo:lakras/matlab-to-julia language:JavaScript

Filter by

16 results
 (53 ms)

16 results

inlakras/matlab-to-julia (press backspace or delete to remove)

MATLAB input The incorrectly translated MATLAB code. Please include any special steps to reproduce the failed translation, beyond copy/pasting the MATLAB input and clicking translate. function [y]=formtensor(y,mid_inv,d,ry,n) ...
  • AlexanderNenninger
  • Opened 
    on Jul 24, 2023
  • #16

y = 3 * a ... + b expected: y = 3 * a + b There is no line continuation symbol in Julia; continuation takes place as long as the expression isn t complete, so binary operators from the following ...
  • tfinke
  • Opened 
    on Aug 8, 2022
  • #15

[m, n] = size(a) results in m,, n = size(a) instead of m, n = size(a) would expect only one comma, not two
  • tfinke
  • Opened 
    on Aug 8, 2022
  • #14

I test a translation on github.io. but does not remove semicolons.
  • jobdiogenes
  • 1
  • Opened 
    on Aug 14, 2020
  • #13

MATLAB input speye(n,m) Expected Julia output using SparseArrays; SparseArrays.sparse(I, n, m) Comments, suggestions, and other helpful details See: https://docs.julialang.org/en/v1/stdlib/SparseArrays/ ...
  • azev77
  • Opened 
    on Oct 25, 2019
  • #12

In my package MatLang, I have a collection of Matlab s functions written in Julia. The project is growing and so far matrices/array functions are implemented. If we can move this repository to JuliaMatlab ...
  • aminya
  • Opened 
    on Oct 14, 2019
  • #11

MATLAB input # Clear all variables clear all # Show numbers in a long, yet intuitive form format long g # Number of collocation points N = 1000; NN = 100000; # Integration interval xx0 ...
  • fusion809
  • 1
  • Opened 
    on Jun 22, 2019
  • #10

In MatLab I found code of the type: function[x, y]=foo(a,b,c) if nargin 3 # do something end if nargin 2 # do another thing end end I think this should be translated ...
  • sbacelar
  • 1
  • Opened 
    on May 14, 2019
  • #9

A(12*i-11:12*i-3,1:18) = [kron(Ra,eye(3)) kron(-eye(3),Rb )]; is translated to A[12*i-11:12*i-3,1:18] = [kron(Ra,I] It misses half the expression, but another problem is that I does not have size and ...
  • baggepinnen
  • 3
  • Opened 
    on Apr 3, 2019
  • #8

X = u*v ; is translated to X = u*v probably confuses it with a string
  • baggepinnen
  • 3
  • Opened 
    on Apr 3, 2019
  • #7
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue search results · GitHub