Community Profile

photo

Jiawei Gong


Penn State Behrend

Last seen: circa un anno fa Attivo dal 2019

Followers: 0   Following: 0

Contatto

Assistant Professor of Mechanical Engineering

Statistiche

All
  • Thankful Level 2
  • First Answer
  • Matrix Manipulation II Master
  • Indexing II Master
  • First Submission
  • First Review
  • Project Euler I
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Commenter
  • Promoter

Visualizza badge

Feeds

Visto da

Domanda


syms x - Not enough input arguments.
>> syms x Not enough input arguments. Error in digits (line 3) for i=1:length(s) Error in sym (line 192) S.Digits =...

circa 3 anni fa | 1 risposta | 0

1

risposta

Risposto
Editing a function to return a value that shows how many times a recursive function is called
function [f,count] = MyFib(n) count = 1; if n==1 || n==2 f = 1; else [f1,count1] = MyFib(n-1); [f2,count2] = M...

circa 4 anni fa | 2

Domanda


Error: Live Editor Run Section
My scirpt has multiple sections. I intentially leave a few lines incomplete for demo purpose. When I run Section One, the erro...

circa 4 anni fa | 2 risposte | 2

2

risposte

Domanda


calling gradient multiple times
MATLAB suggests not to call gradient multiple times, but I did it for sin function. As shown in the figure, the first order der...

oltre 4 anni fa | 1 risposta | 0

1

risposta